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

Unified Diff: Source/core/animation/animatable/AnimatableValue.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/AnimatableValue.cpp
diff --git a/Source/core/animation/animatable/AnimatableValue.cpp b/Source/core/animation/animatable/AnimatableValue.cpp
index 5a7666886a34caf128b3d6d16321d4435d1e486b..51388bff96bbc131098d918134a34a35c2a1aab8 100644
--- a/Source/core/animation/animatable/AnimatableValue.cpp
+++ b/Source/core/animation/animatable/AnimatableValue.cpp
@@ -39,11 +39,11 @@ namespace blink {
const AnimatableValue* AnimatableValue::neutralValue()
{
- DEFINE_STATIC_REF_WILL_BE_PERSISTENT(AnimatableNeutral, neutralSentinelValue, (AnimatableNeutral::create()));
+ DEFINE_STATIC_REF(AnimatableNeutral, neutralSentinelValue, (AnimatableNeutral::create()));
return neutralSentinelValue;
}
-PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableValue::interpolate(const AnimatableValue* left, const AnimatableValue* right, double fraction)
+PassRefPtr<AnimatableValue> AnimatableValue::interpolate(const AnimatableValue* left, const AnimatableValue* right, double fraction)
{
ASSERT(left);
ASSERT(right);

Powered by Google App Engine
This is Rietveld 408576698