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

Unified Diff: Source/core/rendering/InlineBox.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/rendering/InlineBox.h ('k') | Source/core/rendering/InlineFlowBox.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/InlineBox.cpp
diff --git a/Source/core/rendering/InlineBox.cpp b/Source/core/rendering/InlineBox.cpp
index 3cf8df5cd1a5fb7801ce57ecf3fc2f67d7530c8f..7f36f777f5ca1f243b5157b9bed2d6aa1cd44d3b 100644
--- a/Source/core/rendering/InlineBox.cpp
+++ b/Source/core/rendering/InlineBox.cpp
@@ -29,7 +29,6 @@
#include "RenderArena.h"
#include "RenderBlock.h"
#include "RootInlineBox.h"
-#include "WebCoreMemoryInstrumentation.h"
#ifndef NDEBUG
#include <stdio.h>
@@ -392,17 +391,6 @@ LayoutPoint InlineBox::flipForWritingMode(const LayoutPoint& point)
return root()->block()->flipForWritingMode(point);
}
-void InlineBox::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::Rendering);
- info.addMember(m_next, "next");
- info.addMember(m_prev, "prev");
- info.addMember(m_parent, "parent");
- info.addMember(m_renderer, "renderer");
-
- info.setCustomAllocation(true);
-}
-
} // namespace WebCore
#ifndef NDEBUG
« no previous file with comments | « Source/core/rendering/InlineBox.h ('k') | Source/core/rendering/InlineFlowBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698