Index: Source/core/rendering/InlineTextBox.cpp |
diff --git a/Source/core/rendering/InlineTextBox.cpp b/Source/core/rendering/InlineTextBox.cpp |
index 726e8ead54eb3bf44f765dbf5edb624ed284b21c..0b2e98e3550c1f42378ba7514daa3f3780a7846f 100644 |
--- a/Source/core/rendering/InlineTextBox.cpp |
+++ b/Source/core/rendering/InlineTextBox.cpp |
@@ -46,7 +46,6 @@ |
#include "Settings.h" |
#include "SVGTextRunRenderingContext.h" |
#include "Text.h" |
-#include "WebCoreMemoryInstrumentation.h" |
#include "break_lines.h" |
#include <wtf/text/CString.h> |
@@ -1627,12 +1626,4 @@ void InlineTextBox::showBox(int printedCharacters) const |
#endif |
-void InlineTextBox::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
-{ |
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::Rendering); |
- InlineBox::reportMemoryUsage(memoryObjectInfo); |
- info.addMember(m_prevTextBox, "prevTextBox"); |
- info.addMember(m_nextTextBox, "nextTextBox"); |
-} |
- |
} // namespace WebCore |