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

Unified Diff: Source/core/css/CSSCharsetRule.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/css/CSSCharsetRule.h ('k') | Source/core/css/CSSComputedStyleDeclaration.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSCharsetRule.cpp
diff --git a/Source/core/css/CSSCharsetRule.cpp b/Source/core/css/CSSCharsetRule.cpp
index 7df8ccab602469c93b242526d10ce6a0299e7170..7bb2a41700ba3b73044f4e625e6f89daf289b1a5 100644
--- a/Source/core/css/CSSCharsetRule.cpp
+++ b/Source/core/css/CSSCharsetRule.cpp
@@ -21,8 +21,6 @@
#include "config.h"
#include "CSSCharsetRule.h"
-#include "WebCoreMemoryInstrumentation.h"
-
namespace WebCore {
CSSCharsetRule::CSSCharsetRule(CSSStyleSheet* parent, const String& encoding)
@@ -36,11 +34,4 @@ String CSSCharsetRule::cssText() const
return "@charset \"" + m_encoding + "\";";
}
-void CSSCharsetRule::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS);
- CSSRule::reportMemoryUsage(memoryObjectInfo);
- info.addMember(m_encoding, "encoding");
-}
-
} // namespace WebCore
« no previous file with comments | « Source/core/css/CSSCharsetRule.h ('k') | Source/core/css/CSSComputedStyleDeclaration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698