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

Unified Diff: Source/core/dom/TreeScope.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/TreeScope.h ('k') | Source/core/dom/WebCoreMemoryInstrumentation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/TreeScope.cpp
diff --git a/Source/core/dom/TreeScope.cpp b/Source/core/dom/TreeScope.cpp
index 9811dd74f608a234d62572a5f3545ac32e0d7fa6..1659f86a844a41e620bd83e781b0d7b883cc4a4e 100644
--- a/Source/core/dom/TreeScope.cpp
+++ b/Source/core/dom/TreeScope.cpp
@@ -382,20 +382,6 @@ Node* TreeScope::focusedNode()
return 0;
}
-void TreeScope::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::DOM);
- info.addMember(m_rootNode, "rootNode");
- info.addMember(m_parentTreeScope, "parentTreeScope");
- info.addMember(m_elementsById, "elementsById");
- info.addMember(m_imageMapsByName, "imageMapsByName");
- info.addMember(m_labelsByForAttribute, "labelsByForAttribute");
- info.addMember(m_idTargetObserverRegistry, "idTargetObserverRegistry");
- info.addMember(m_selection, "selection");
- info.addMember(m_documentScope, "documentScope");
-
-}
-
static void listTreeScopes(Node* node, Vector<TreeScope*, 5>& treeScopes)
{
while (true) {
« no previous file with comments | « Source/core/dom/TreeScope.h ('k') | Source/core/dom/WebCoreMemoryInstrumentation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698