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

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

Issue 1120003002: [Oilpan] Migrate most classes under core/animations to Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 4 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..1b29c63983b6bee09b9120f8c75261823882122b 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
+AnimatableValue* AnimatableShapeValue::interpolateTo(const AnimatableValue* value, double fraction) const
{
if (usesDefaultInterpolationWith(value))
return defaultInterpolateTo(this, value, fraction);

Powered by Google App Engine
This is Rietveld 408576698