Index: Source/core/css/CSSFontFaceSrcValue.cpp |
diff --git a/Source/core/css/CSSFontFaceSrcValue.cpp b/Source/core/css/CSSFontFaceSrcValue.cpp |
index e1a339898d42f03f44671ae4254d5e380e44796c..bfdb7a741b8c029aa593f131ea1d269dfd911bf0 100644 |
--- a/Source/core/css/CSSFontFaceSrcValue.cpp |
+++ b/Source/core/css/CSSFontFaceSrcValue.cpp |
@@ -34,7 +34,6 @@ |
#include "Node.h" |
#include "SVGFontFaceElement.h" |
#include "StyleSheetContents.h" |
-#include "WebCoreMemoryInstrumentation.h" |
#include <wtf/text/StringBuilder.h> |
namespace WebCore { |
@@ -109,15 +108,4 @@ bool CSSFontFaceSrcValue::equals(const CSSFontFaceSrcValue& other) const |
return m_isLocal == other.m_isLocal && m_format == other.m_format && m_resource == other.m_resource; |
} |
-void CSSFontFaceSrcValue::reportDescendantMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
-{ |
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::CSS); |
- info.addMember(m_resource, "resource"); |
- info.addMember(m_format, "format"); |
- // FIXME: add m_cachedFont when MemoryCache is instrumented. |
-#if ENABLE(SVG_FONTS) |
- info.addMember(m_svgFontFaceElement, "svgFontFaceElement"); |
-#endif |
-} |
- |
} |