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

Unified Diff: Source/core/dom/ShadowRoot.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/ShadowRoot.h ('k') | Source/core/dom/TreeScope.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/ShadowRoot.cpp
diff --git a/Source/core/dom/ShadowRoot.cpp b/Source/core/dom/ShadowRoot.cpp
index f3052f2573d230a5904bd9c67ef16334cfc2b583..444ba192a2863d0dc29635b5038272328815ef17 100644
--- a/Source/core/dom/ShadowRoot.cpp
+++ b/Source/core/dom/ShadowRoot.cpp
@@ -253,14 +253,4 @@ ScopeContentDistribution* ShadowRoot::ensureScopeDistribution()
return m_scopeDistribution.get();
}
-void ShadowRoot::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::DOM);
- DocumentFragment::reportMemoryUsage(memoryObjectInfo);
- TreeScope::reportMemoryUsage(memoryObjectInfo);
- info.addMember(m_prev, "prev");
- info.addMember(m_next, "next");
- info.addMember(m_scopeDistribution, "scopeDistribution");
-}
-
}
« no previous file with comments | « Source/core/dom/ShadowRoot.h ('k') | Source/core/dom/TreeScope.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698