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 |