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

Unified Diff: Source/core/dom/ElementRareData.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/dom/ElementRareData.h ('k') | Source/core/dom/ElementShadow.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/ElementRareData.cpp
diff --git a/Source/core/dom/ElementRareData.cpp b/Source/core/dom/ElementRareData.cpp
index 48c9a04184ca7d845d842f6f0551a77242e2d241..bc8247850b09726c7d08d494872e09097d73a8b8 100644
--- a/Source/core/dom/ElementRareData.cpp
+++ b/Source/core/dom/ElementRareData.cpp
@@ -32,7 +32,6 @@
#include "ElementRareData.h"
#include "RenderStyle.h"
-#include "WebCoreMemoryInstrumentation.h"
namespace WebCore {
@@ -46,18 +45,4 @@ struct SameSizeAsElementRareData : NodeRareData {
COMPILE_ASSERT(sizeof(ElementRareData) == sizeof(SameSizeAsElementRareData), ElementRareDataShouldStaySmall);
-void ElementRareData::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::DOM);
- NodeRareData::reportMemoryUsage(memoryObjectInfo);
-
- info.addMember(m_computedStyle, "computedStyle");
- info.addMember(m_dataset, "dataset");
- info.addMember(m_classList, "classList");
- info.addMember(m_shadow, "shadow");
- info.addMember(m_attributeMap, "attributeMap");
- info.addMember(m_generatedBefore, "generatedBefore");
- info.addMember(m_generatedAfter, "generatedAfter");
-}
-
} // namespace WebCore
« no previous file with comments | « Source/core/dom/ElementRareData.h ('k') | Source/core/dom/ElementShadow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698