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

Unified Diff: Source/core/animation/animatable/AnimatableDoubleAndBool.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/AnimatableDoubleAndBool.cpp
diff --git a/Source/core/animation/animatable/AnimatableDoubleAndBool.cpp b/Source/core/animation/animatable/AnimatableDoubleAndBool.cpp
index 0bdc98ab48c73d73d9096063a736b708cacb7c30..cc2a85d691c2039dbf2d25ecbc161edc1931cfc2 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
+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