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

Unified Diff: Source/core/animation/animatable/AnimatableSVGLength.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
Index: Source/core/animation/animatable/AnimatableSVGLength.cpp
diff --git a/Source/core/animation/animatable/AnimatableSVGLength.cpp b/Source/core/animation/animatable/AnimatableSVGLength.cpp
index 8bc468ec128538e96898f53bd94b024fc5309780..d706844d3352ff9825bbefbf27ffc8478c9e3f2d 100644
--- a/Source/core/animation/animatable/AnimatableSVGLength.cpp
+++ b/Source/core/animation/animatable/AnimatableSVGLength.cpp
@@ -45,4 +45,10 @@ bool AnimatableSVGLength::equalTo(const AnimatableValue* value) const
return *m_length == *toAnimatableSVGLength(value)->m_length;
}
+void AnimatableSVGLength::trace(Visitor* visitor)
+{
+ visitor->trace(m_length);
+ AnimatableValue::trace(visitor);
+}
+
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698