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

Unified Diff: Source/core/rendering/InlineFlowBox.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/InlineFlowBox.h ('k') | Source/core/rendering/InlineTextBox.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/InlineFlowBox.cpp
diff --git a/Source/core/rendering/InlineFlowBox.cpp b/Source/core/rendering/InlineFlowBox.cpp
index 201a06988337cb019c117b863b4c399fcb38a3dd..34b0ab3ce230c135a0626ad3067298bd779ccd9a 100644
--- a/Source/core/rendering/InlineFlowBox.cpp
+++ b/Source/core/rendering/InlineFlowBox.cpp
@@ -39,7 +39,6 @@
#include "RenderView.h"
#include "RootInlineBox.h"
#include "Text.h"
-#include "WebCoreMemoryInstrumentation.h"
#include <math.h>
@@ -1646,15 +1645,4 @@ void InlineFlowBox::checkConsistency() const
#endif
-void InlineFlowBox::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::Rendering);
- InlineBox::reportMemoryUsage(memoryObjectInfo);
- info.addMember(m_overflow, "overflow");
- info.addMember(m_firstChild, "firstChild");
- info.addMember(m_lastChild, "lastChild");
- info.addMember(m_prevLineBox, "prevLineBox");
- info.addMember(m_nextLineBox, "nextLineBox");
-}
-
} // namespace WebCore
« no previous file with comments | « Source/core/rendering/InlineFlowBox.h ('k') | Source/core/rendering/InlineTextBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698