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

Unified Diff: Source/core/animation/animatable/AnimatableShapeValue.cpp

Issue 1276183004: Oilpan: Unship oilpan from temporary animation objects (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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/animation/animatable/AnimatableShapeValue.cpp
diff --git a/Source/core/animation/animatable/AnimatableShapeValue.cpp b/Source/core/animation/animatable/AnimatableShapeValue.cpp
index e202a8db5c91ab4709df49c3affe1b103b75f497..c3c4dd442414c4abb74f30dd4c4dae7ebabc783b 100644
--- a/Source/core/animation/animatable/AnimatableShapeValue.cpp
+++ b/Source/core/animation/animatable/AnimatableShapeValue.cpp
@@ -48,7 +48,7 @@ bool AnimatableShapeValue::usesDefaultInterpolationWith(const AnimatableValue* v
return !fromShape->canBlend(toShape);
}
-PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableShapeValue::interpolateTo(const AnimatableValue* value, double fraction) const
+PassRefPtr<AnimatableValue> AnimatableShapeValue::interpolateTo(const AnimatableValue* value, double fraction) const
{
if (usesDefaultInterpolationWith(value))
return defaultInterpolateTo(this, value, fraction);
@@ -65,10 +65,4 @@ bool AnimatableShapeValue::equalTo(const AnimatableValue* value) const
return m_shape == shape || (m_shape && shape && *m_shape == *shape);
}
-DEFINE_TRACE(AnimatableShapeValue)
-{
- visitor->trace(m_shape);
- AnimatableValue::trace(visitor);
-}
-
}

Powered by Google App Engine
This is Rietveld 408576698