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

Unified Diff: Source/core/dom/CharacterData.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/CharacterData.h ('k') | Source/core/dom/ContainerNode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/CharacterData.cpp
diff --git a/Source/core/dom/CharacterData.cpp b/Source/core/dom/CharacterData.cpp
index 415b5616e411f5a73a0ec1554b78fd5544c152b8..a4f1922e162a8eedd1e2937e3680b737ab5d6227 100644
--- a/Source/core/dom/CharacterData.cpp
+++ b/Source/core/dom/CharacterData.cpp
@@ -35,7 +35,6 @@
#include "StyleInheritedData.h"
#include "Text.h"
#include "TextBreakIterator.h"
-#include "WebCoreMemoryInstrumentation.h"
using namespace std;
@@ -104,13 +103,6 @@ unsigned CharacterData::parserAppendData(const String& string, unsigned offset,
return characterLengthLimit;
}
-void CharacterData::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::DOM);
- Node::reportMemoryUsage(memoryObjectInfo);
- info.addMember(m_data, "data");
-}
-
void CharacterData::appendData(const String& data, ExceptionCode&)
{
String newStr = m_data;
« no previous file with comments | « Source/core/dom/CharacterData.h ('k') | Source/core/dom/ContainerNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698