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

Unified Diff: Source/core/dom/Attribute.h

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/ActiveDOMObject.cpp ('k') | Source/core/dom/CharacterData.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Attribute.h
diff --git a/Source/core/dom/Attribute.h b/Source/core/dom/Attribute.h
index 649c26ab1f5f2ee0a934333fe175c965efeaa6a7..4a2fcad3fd76df290ff4bd6e708448813715e018 100644
--- a/Source/core/dom/Attribute.h
+++ b/Source/core/dom/Attribute.h
@@ -26,7 +26,6 @@
#define Attribute_h
#include "QualifiedName.h"
-#include "WebCoreMemoryInstrumentation.h"
namespace WebCore {
@@ -62,13 +61,6 @@ public:
// elements may have placed the Attribute in a hash by name.
void parserSetName(const QualifiedName& name) { m_name = name; }
- void reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
- {
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::DOM);
- info.addMember(m_name, "name");
- info.addMember(m_value, "value");
- }
-
#if COMPILER(MSVC)
// NOTE: This constructor is not actually implemented, it's just defined so MSVC
// will let us use a zero-length array of Attributes.
« no previous file with comments | « Source/core/dom/ActiveDOMObject.cpp ('k') | Source/core/dom/CharacterData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698