| 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);
|
| -}
|
| -
|
| }
|
|
|