Index: Source/core/css/StyleSheetContents.cpp |
diff --git a/Source/core/css/StyleSheetContents.cpp b/Source/core/css/StyleSheetContents.cpp |
index ce46f174ff9573615da9fd6212e5e93aeeea903d..345c879dcb42f2a7948e2c136789e134611afbe9 100644 |
--- a/Source/core/css/StyleSheetContents.cpp |
+++ b/Source/core/css/StyleSheetContents.cpp |
@@ -32,10 +32,7 @@ |
#include "StylePropertySet.h" |
#include "StyleRule.h" |
#include "StyleRuleImport.h" |
-#include "WebCoreMemoryInstrumentation.h" |
#include <wtf/Deque.h> |
-#include <wtf/MemoryInstrumentationHashMap.h> |
-#include <wtf/MemoryInstrumentationVector.h> |
namespace WebCore { |
@@ -507,17 +504,4 @@ void StyleSheetContents::shrinkToFit() |
m_childRules.shrinkToFit(); |
} |
-void StyleSheetContents::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
-{ |
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
- info.addMember(m_ownerRule, "ownerRule"); |
- info.addMember(m_originalURL, "originalURL"); |
- info.addMember(m_encodingFromCharsetRule, "encodingFromCharsetRule"); |
- info.addMember(m_importRules, "importRules"); |
- info.addMember(m_childRules, "childRules"); |
- info.addMember(m_namespaces, "namespaces"); |
- info.addMember(m_parserContext, "parserContext"); |
- info.addMember(m_clients, "clients"); |
-} |
- |
} |