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

Unified Diff: Source/core/svg/SVGViewSpec.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/SVGViewSpec.h ('k') | Source/core/svg/SVGZoomEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGViewSpec.cpp
diff --git a/Source/core/svg/SVGViewSpec.cpp b/Source/core/svg/SVGViewSpec.cpp
index 67be16d742ae938554bfe962d39a2e185bdc1f5c..57a9ac25be1d944bed8d2f280e3c1be424d2d376 100644
--- a/Source/core/svg/SVGViewSpec.cpp
+++ b/Source/core/svg/SVGViewSpec.cpp
@@ -47,6 +47,13 @@ SVGViewSpec::SVGViewSpec(SVGSVGElement* contextElement)
// Note: addToPropertyMap is not needed, as SVGViewSpec do not correspond to an element.
}
+void SVGViewSpec::trace(Visitor* visitor)
+{
+ visitor->trace(m_contextElement);
+ visitor->trace(m_transform);
+ SVGFitToViewBox::trace(visitor);
+}
+
bool SVGViewSpec::parseViewSpec(const String& spec)
{
if (spec.isEmpty() || !m_contextElement)
@@ -210,9 +217,4 @@ bool SVGViewSpec::parseViewSpecInternal(const CharType* ptr, const CharType* end
return true;
}
-void SVGViewSpec::trace(Visitor* visitor)
-{
- visitor->trace(m_contextElement);
-}
-
}
« no previous file with comments | « Source/core/svg/SVGViewSpec.h ('k') | Source/core/svg/SVGZoomEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698