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

Unified Diff: Source/core/css/ShadowValue.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/ShadowValue.h ('k') | Source/core/css/StylePropertySet.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/ShadowValue.cpp
diff --git a/Source/core/css/ShadowValue.cpp b/Source/core/css/ShadowValue.cpp
index 0e15e325ccdcd01831d5a8b221f1ffda1a3aa3c3..0d314be5677e341de2abca3eeb35c18078d75f42 100644
--- a/Source/core/css/ShadowValue.cpp
+++ b/Source/core/css/ShadowValue.cpp
@@ -21,7 +21,6 @@
#include "ShadowValue.h"
#include "CSSPrimitiveValue.h"
-#include "WebCoreMemoryInstrumentation.h"
#include <wtf/text/StringBuilder.h>
#include <wtf/text/WTFString.h>
@@ -89,15 +88,4 @@ bool ShadowValue::equals(const ShadowValue& other) const
&& compareCSSValuePtr(style, other.style);
}
-void ShadowValue::reportDescendantMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS);
- info.addMember(x, "x");
- info.addMember(y, "y");
- info.addMember(blur, "blur");
- info.addMember(spread, "spread");
- info.addMember(style, "style");
- info.addMember(color, "color");
-}
-
}
« no previous file with comments | « Source/core/css/ShadowValue.h ('k') | Source/core/css/StylePropertySet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698