Chromium Code Reviews

Unified Diff: Source/core/svg/SVGMPathElement.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.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « Source/core/svg/SVGMPathElement.h ('k') | Source/core/svg/SVGMarkerElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGMPathElement.cpp
diff --git a/Source/core/svg/SVGMPathElement.cpp b/Source/core/svg/SVGMPathElement.cpp
index e6825172a640759bfd41091868c5944b3d78fd7d..fe53aa2212f108c1cb1104f8edd8073c60d2366e 100644
--- a/Source/core/svg/SVGMPathElement.cpp
+++ b/Source/core/svg/SVGMPathElement.cpp
@@ -35,6 +35,12 @@ inline SVGMPathElement::SVGMPathElement(Document& document)
{
}
+void SVGMPathElement::trace(Visitor* visitor)
+{
+ SVGElement::trace(visitor);
+ SVGURIReference::trace(visitor);
+}
+
DEFINE_NODE_FACTORY(SVGMPathElement)
SVGMPathElement::~SVGMPathElement()
« no previous file with comments | « Source/core/svg/SVGMPathElement.h ('k') | Source/core/svg/SVGMarkerElement.h » ('j') | no next file with comments »

Powered by Google App Engine