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

Unified Diff: Source/core/html/HTMLInputElement.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/html/HTMLInputElement.h ('k') | Source/core/html/HTMLMediaElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLInputElement.cpp
diff --git a/Source/core/html/HTMLInputElement.cpp b/Source/core/html/HTMLInputElement.cpp
index b3232c0695529d5dc5ca207dadc5fff5d38219f3..a33cf145712c980728131cdd558d726bd0505e84 100644
--- a/Source/core/html/HTMLInputElement.cpp
+++ b/Source/core/html/HTMLInputElement.cpp
@@ -1944,19 +1944,6 @@ bool HTMLInputElement::setupDateTimeChooserParameters(DateTimeChooserParameters&
return true;
}
-void HTMLInputElement::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::DOM);
- HTMLTextFormControlElement::reportMemoryUsage(memoryObjectInfo);
- info.addMember(m_name, "name");
- info.addMember(m_valueIfDirty, "valueIfDirty");
- info.addMember(m_suggestedValue, "suggestedValue");
- info.addMember(m_inputType, "inputType");
-#if ENABLE(DATALIST_ELEMENT)
- info.addMember(m_listAttributeTargetObserver, "listAttributeTargetObserver");
-#endif
-}
-
#if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer()
{
« no previous file with comments | « Source/core/html/HTMLInputElement.h ('k') | Source/core/html/HTMLMediaElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698