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

Unified Diff: Source/core/rendering/style/StyleRareNonInheritedData.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/rendering/style/StyleRareNonInheritedData.h ('k') | Source/core/svg/SVGColor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/style/StyleRareNonInheritedData.cpp
diff --git a/Source/core/rendering/style/StyleRareNonInheritedData.cpp b/Source/core/rendering/style/StyleRareNonInheritedData.cpp
index 3a87f5ad0705e0e5050d363c588dcdd4748adde2..8a62453a3826f91251306362d8c2101757e58118 100644
--- a/Source/core/rendering/style/StyleRareNonInheritedData.cpp
+++ b/Source/core/rendering/style/StyleRareNonInheritedData.cpp
@@ -30,10 +30,6 @@
#include "StyleTransformData.h"
#include "StyleImage.h"
#include "StyleResolver.h"
-#include "WebCoreMemoryInstrumentation.h"
-#include <wtf/MemoryInstrumentationHashMap.h>
-#include <wtf/MemoryInstrumentationVector.h>
-#include <wtf/MemoryObjectInfo.h>
namespace WebCore {
@@ -305,34 +301,4 @@ bool StyleRareNonInheritedData::transitionDataEquivalent(const StyleRareNonInher
return true;
}
-void StyleRareNonInheritedData::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS);
- info.addMember(m_deprecatedFlexibleBox, "deprecatedFlexibleBox");
- info.addMember(m_flexibleBox, "flexibleBox");
- info.addMember(m_marquee, "marquee");
- info.addMember(m_multiCol, "multiCol");
- info.addMember(m_transform, "transform");
- info.addMember(m_filter, "filter");
- info.addMember(m_grid, "grid");
- info.addMember(m_gridItem, "gridItem");
- info.addMember(m_content, "content");
- info.addMember(m_counterDirectives, "counterDirectives");
- info.addMember(m_boxShadow, "boxShadow");
- info.addMember(m_boxReflect, "boxReflect");
- info.addMember(m_animations, "animations");
- info.addMember(m_transitions, "transitions");
- info.addMember(m_shapeInside, "shapeInside");
- info.addMember(m_shapeOutside, "shapeOutside");
- info.addMember(m_clipPath, "clipPath");
- info.addMember(m_flowThread, "flowThread");
- info.addMember(m_regionThread, "regionThread");
-
- info.ignoreMember(m_perspectiveOriginX);
- info.ignoreMember(m_perspectiveOriginY);
- info.ignoreMember(m_pageSize);
- info.ignoreMember(m_shapeMargin);
- info.ignoreMember(m_shapePadding);
-}
-
} // namespace WebCore
« no previous file with comments | « Source/core/rendering/style/StyleRareNonInheritedData.h ('k') | Source/core/svg/SVGColor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698