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

Unified Diff: Source/core/animation/animatable/AnimatableDoubleAndBool.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/AnimatableDoubleAndBool.cpp
diff --git a/Source/core/animation/animatable/AnimatableDoubleAndBool.cpp b/Source/core/animation/animatable/AnimatableDoubleAndBool.cpp
index 0bdc98ab48c73d73d9096063a736b708cacb7c30..54b6feaa0755c4472216e5221423e083940843c5 100644
--- a/Source/core/animation/animatable/AnimatableDoubleAndBool.cpp
+++ b/Source/core/animation/animatable/AnimatableDoubleAndBool.cpp
@@ -15,7 +15,7 @@ bool AnimatableDoubleAndBool::usesDefaultInterpolationWith(const AnimatableValue
return flag() != other->flag();
}
-PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableDoubleAndBool::interpolateTo(const AnimatableValue* value, double fraction) const
+PassRefPtr<AnimatableValue> AnimatableDoubleAndBool::interpolateTo(const AnimatableValue* value, double fraction) const
{
const AnimatableDoubleAndBool* other = toAnimatableDoubleAndBool(value);
if (flag() == other->flag())

Powered by Google App Engine
This is Rietveld 408576698