Index: Source/core/css/PropertySetCSSStyleDeclaration.cpp |
diff --git a/Source/core/css/PropertySetCSSStyleDeclaration.cpp b/Source/core/css/PropertySetCSSStyleDeclaration.cpp |
index 56d9215a8697f9154240dd816d1497af2ffaa8fe..2972575aff2626871aadc8be87db647ee36db5de 100644 |
--- a/Source/core/css/PropertySetCSSStyleDeclaration.cpp |
+++ b/Source/core/css/PropertySetCSSStyleDeclaration.cpp |
@@ -30,8 +30,6 @@ |
#include "MutationRecord.h" |
#include "StylePropertySet.h" |
#include "StyledElement.h" |
-#include "WebCoreMemoryInstrumentation.h" |
-#include <wtf/MemoryInstrumentationHashMap.h> |
using namespace std; |
@@ -132,13 +130,6 @@ void PropertySetCSSStyleDeclaration::deref() |
m_propertySet->deref(); |
} |
-void PropertySetCSSStyleDeclaration::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
-{ |
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
- info.addMember(m_propertySet, "propertySet"); |
- info.addMember(m_cssomCSSValueClones, "cssomCSSValueClones"); |
-} |
- |
unsigned PropertySetCSSStyleDeclaration::length() const |
{ |
return m_propertySet->propertyCount(); |
@@ -372,20 +363,6 @@ void StyleRuleCSSStyleDeclaration::reattach(StylePropertySet* propertySet) |
m_propertySet->ref(); |
} |
-void StyleRuleCSSStyleDeclaration::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
-{ |
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
- PropertySetCSSStyleDeclaration::reportMemoryUsage(memoryObjectInfo); |
- info.addMember(m_parentRule, "parentRule"); |
-} |
- |
-void InlineCSSStyleDeclaration::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
-{ |
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
- PropertySetCSSStyleDeclaration::reportMemoryUsage(memoryObjectInfo); |
- info.addMember(m_parentElement, "parentElement"); |
-} |
- |
void InlineCSSStyleDeclaration::didMutate(MutationType type) |
{ |
if (type == NoChanges) |