Index: Source/core/svg/SVGPaint.cpp |
diff --git a/Source/core/svg/SVGPaint.cpp b/Source/core/svg/SVGPaint.cpp |
index f69c45a3c3bf705301a3d396a015d4b6600fb91e..4ac034088cc61cad316802994e0ab06e1a2c8797 100644 |
--- a/Source/core/svg/SVGPaint.cpp |
+++ b/Source/core/svg/SVGPaint.cpp |
@@ -26,7 +26,6 @@ |
#include "SVGException.h" |
#include "SVGURIReference.h" |
-#include "WebCoreMemoryInstrumentation.h" |
#include <wtf/text/WTFString.h> |
namespace WebCore { |
@@ -117,12 +116,6 @@ bool SVGPaint::equals(const SVGPaint& other) const |
return m_paintType == other.m_paintType && m_uri == other.m_uri && SVGColor::equals(other); |
} |
-void SVGPaint::reportDescendantMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
-{ |
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
- info.addMember(m_uri, "uri"); |
-} |
- |
} |
#endif // ENABLE(SVG) |