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

Unified Diff: Source/core/animation/animatable/AnimatableLengthPoint3D.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/AnimatableLengthPoint3D.cpp
diff --git a/Source/core/animation/animatable/AnimatableLengthPoint3D.cpp b/Source/core/animation/animatable/AnimatableLengthPoint3D.cpp
index 9f698aec5c97c9b7191b557dd982524b3c69cc42..0d05ca961d5afec80987748215ce0c732c00208c 100644
--- a/Source/core/animation/animatable/AnimatableLengthPoint3D.cpp
+++ b/Source/core/animation/animatable/AnimatableLengthPoint3D.cpp
@@ -33,7 +33,7 @@
namespace blink {
-PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLengthPoint3D::interpolateTo(const AnimatableValue* value, double fraction) const
+PassRefPtr<AnimatableValue> AnimatableLengthPoint3D::interpolateTo(const AnimatableValue* value, double fraction) const
{
const AnimatableLengthPoint3D* lengthPoint = toAnimatableLengthPoint3D(value);
return AnimatableLengthPoint3D::create(
@@ -48,12 +48,4 @@ bool AnimatableLengthPoint3D::equalTo(const AnimatableValue* value) const
return x()->equals(lengthPoint->x()) && y()->equals(lengthPoint->y()) && z()->equals(lengthPoint->z());
}
-DEFINE_TRACE(AnimatableLengthPoint3D)
-{
- visitor->trace(m_x);
- visitor->trace(m_y);
- visitor->trace(m_z);
- AnimatableValue::trace(visitor);
-}
-
}

Powered by Google App Engine
This is Rietveld 408576698