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

Unified Diff: Source/core/svg/SVGComponentTransferFunctionElement.cpp

Issue 678163002: Oilpan: move SVG property hierarchy to the heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased upto r185213 Created 6 years, 1 month 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/svg/SVGComponentTransferFunctionElement.h ('k') | Source/core/svg/SVGCursorElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGComponentTransferFunctionElement.cpp
diff --git a/Source/core/svg/SVGComponentTransferFunctionElement.cpp b/Source/core/svg/SVGComponentTransferFunctionElement.cpp
index 1a79e934d75b44fa2617fef4966690cc9999e222..ba573e43d9bb2344c5730a5f32861700f828e959 100644
--- a/Source/core/svg/SVGComponentTransferFunctionElement.cpp
+++ b/Source/core/svg/SVGComponentTransferFunctionElement.cpp
@@ -61,6 +61,18 @@ SVGComponentTransferFunctionElement::SVGComponentTransferFunctionElement(const Q
addToPropertyMap(m_type);
}
+void SVGComponentTransferFunctionElement::trace(Visitor* visitor)
+{
+ visitor->trace(m_tableValues);
+ visitor->trace(m_slope);
+ visitor->trace(m_intercept);
+ visitor->trace(m_amplitude);
+ visitor->trace(m_exponent);
+ visitor->trace(m_offset);
+ visitor->trace(m_type);
+ SVGElement::trace(visitor);
+}
+
bool SVGComponentTransferFunctionElement::isSupportedAttribute(const QualifiedName& attrName)
{
DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
« no previous file with comments | « Source/core/svg/SVGComponentTransferFunctionElement.h ('k') | Source/core/svg/SVGCursorElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698