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

Unified Diff: Source/core/animation/AnimatableFilterOperations.cpp

Issue 204743002: Oilpan: Move AnimatableValue's hierarchy to oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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/AnimatableFilterOperations.cpp
diff --git a/Source/core/animation/AnimatableFilterOperations.cpp b/Source/core/animation/AnimatableFilterOperations.cpp
index b11695737797999983edf733a4756c3848bd3cb8..103640bbc5033f3429fc428d1bd1f3b5ae1799f5 100644
--- a/Source/core/animation/AnimatableFilterOperations.cpp
+++ b/Source/core/animation/AnimatableFilterOperations.cpp
@@ -41,7 +41,7 @@ bool AnimatableFilterOperations::usesDefaultInterpolationWith(const AnimatableVa
return !operations().canInterpolateWith(target->operations());
}
-PassRefPtr<AnimatableValue> AnimatableFilterOperations::interpolateTo(const AnimatableValue* value, double fraction) const
+PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableFilterOperations::interpolateTo(const AnimatableValue* value, double fraction) const
{
if (usesDefaultInterpolationWith(value))
return defaultInterpolateTo(this, value, fraction);
@@ -63,7 +63,7 @@ PassRefPtr<AnimatableValue> AnimatableFilterOperations::interpolateTo(const Anim
return AnimatableFilterOperations::create(result);
}
-PassRefPtr<AnimatableValue> AnimatableFilterOperations::addWith(const AnimatableValue* value) const
+PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableFilterOperations::addWith(const AnimatableValue* value) const
{
ASSERT_WITH_MESSAGE(false, "Web Animations not yet implemented: AnimatableFilterOperations::addWith()");
return defaultAddWith(this, value);
@@ -74,4 +74,9 @@ bool AnimatableFilterOperations::equalTo(const AnimatableValue* value) const
return operations() == toAnimatableFilterOperations(value)->operations();
}
+void AnimatableFilterOperations::trace(Visitor* visitor)
+{
+ AnimatableValue::trace(visitor);
+}
+
}

Powered by Google App Engine
This is Rietveld 408576698