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

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

Issue 304453002: Prepare SMILTimeContainer for oilpan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 months 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
Index: Source/core/svg/SVGSVGElement.cpp
diff --git a/Source/core/svg/SVGSVGElement.cpp b/Source/core/svg/SVGSVGElement.cpp
index e350b3d02507e7b1351c35d00cdfad4f4eb71ebf..165e6b8315b6bce7b930109489572be5e2eedd3e 100644
--- a/Source/core/svg/SVGSVGElement.cpp
+++ b/Source/core/svg/SVGSVGElement.cpp
@@ -779,4 +779,10 @@ void SVGSVGElement::finishParsingChildren()
sendSVGLoadEventIfPossible();
}
+void SVGSVGElement::trace(Visitor* visitor)
+{
+ SVGGraphicsElement::trace(visitor);
haraken 2014/05/26 08:27:27 This should be a tail call.
kouhei (in TOK) 2014/05/26 08:55:28 Done.
+ visitor->trace(m_timeContainer);
+}
+
}

Powered by Google App Engine
This is Rietveld 408576698