diff options
Diffstat (limited to 'Source/WebCore/dom/Attribute.h')
-rw-r--r-- | Source/WebCore/dom/Attribute.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/dom/Attribute.h b/Source/WebCore/dom/Attribute.h index adb18a589..8328a7837 100644 --- a/Source/WebCore/dom/Attribute.h +++ b/Source/WebCore/dom/Attribute.h @@ -71,8 +71,8 @@ public: void reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const { MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::DOM); - info.addInstrumentedMember(m_name); - info.addInstrumentedMember(m_value); + info.addMember(m_name); + info.addMember(m_value); } private: |