summaryrefslogtreecommitdiff
path: root/Source/WebCore/css/WebKitCSSTransformValue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/css/WebKitCSSTransformValue.cpp')
-rw-r--r--Source/WebCore/css/WebKitCSSTransformValue.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/WebCore/css/WebKitCSSTransformValue.cpp b/Source/WebCore/css/WebKitCSSTransformValue.cpp
index 87ded7da6..8e196e5ac 100644
--- a/Source/WebCore/css/WebKitCSSTransformValue.cpp
+++ b/Source/WebCore/css/WebKitCSSTransformValue.cpp
@@ -27,6 +27,7 @@
#include "WebKitCSSTransformValue.h"
#include "CSSValueList.h"
+#include "MemoryInstrumentation.h"
#include "PlatformString.h"
#include <wtf/PassRefPtr.h>
#include <wtf/text/StringBuilder.h>
@@ -104,4 +105,10 @@ PassRefPtr<WebKitCSSTransformValue> WebKitCSSTransformValue::cloneForCSSOM() con
return adoptRef(new WebKitCSSTransformValue(*this));
}
+void WebKitCSSTransformValue::reportDescendantMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
+{
+ MemoryClassInfo info(memoryObjectInfo, this, MemoryInstrumentation::CSS);
+ CSSValueList::reportDescendantMemoryUsage(memoryObjectInfo);
+}
+
}