Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(529)

Unified Diff: Source/core/css/WebKitCSSKeyframesRule.cpp

Issue 13973026: remove memoryinstrumentation Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove the rest part of MemoryInstrumentation Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/WebKitCSSKeyframesRule.h ('k') | Source/core/css/WebKitCSSMixFunctionValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/WebKitCSSKeyframesRule.cpp
diff --git a/Source/core/css/WebKitCSSKeyframesRule.cpp b/Source/core/css/WebKitCSSKeyframesRule.cpp
index 609334b1bd73e5430bef0b40b2335a35e6e7d7da..e364521300890ddde32554694d3e61d39c30ae9e 100644
--- a/Source/core/css/WebKitCSSKeyframesRule.cpp
+++ b/Source/core/css/WebKitCSSKeyframesRule.cpp
@@ -32,7 +32,6 @@
#include "StylePropertySet.h"
#include "StyleSheet.h"
#include "WebKitCSSKeyframeRule.h"
-#include <wtf/MemoryInstrumentationVector.h>
#include <wtf/text/StringBuilder.h>
namespace WebCore {
@@ -87,13 +86,6 @@ int StyleRuleKeyframes::findKeyframeIndex(const String& key) const
return -1;
}
-void StyleRuleKeyframes::reportDescendantMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS);
- info.addMember(m_keyframes, "keyframes");
- info.addMember(m_name, "name");
-}
-
WebKitCSSKeyframesRule::WebKitCSSKeyframesRule(StyleRuleKeyframes* keyframesRule, CSSStyleSheet* parent)
: CSSRule(parent)
, m_keyframesRule(keyframesRule)
@@ -207,13 +199,4 @@ void WebKitCSSKeyframesRule::reattach(StyleRuleBase* rule)
m_keyframesRule = static_cast<StyleRuleKeyframes*>(rule);
}
-void WebKitCSSKeyframesRule::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS);
- CSSRule::reportMemoryUsage(memoryObjectInfo);
- info.addMember(m_keyframesRule, "keyframesRule");
- info.addMember(m_childRuleCSSOMWrappers, "childRuleCSSOMWrappers");
- info.addMember(m_ruleListCSSOMWrapper, "ruleListCSSOMWrapper");
-}
-
} // namespace WebCore
« no previous file with comments | « Source/core/css/WebKitCSSKeyframesRule.h ('k') | Source/core/css/WebKitCSSMixFunctionValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698