Index: Source/core/animation/AnimatableLengthPoint3D.cpp |
diff --git a/Source/core/animation/AnimatableLengthPoint3D.cpp b/Source/core/animation/AnimatableLengthPoint3D.cpp |
index e46494c814332ee5b089b78e38af5ebd25ccd3de..2b8842a0769f49f0c3c69323be2554e79dd48f83 100644 |
--- a/Source/core/animation/AnimatableLengthPoint3D.cpp |
+++ b/Source/core/animation/AnimatableLengthPoint3D.cpp |
@@ -33,7 +33,7 @@ |
namespace WebCore { |
-PassRefPtr<AnimatableValue> AnimatableLengthPoint3D::interpolateTo(const AnimatableValue* value, double fraction) const |
+PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLengthPoint3D::interpolateTo(const AnimatableValue* value, double fraction) const |
{ |
const AnimatableLengthPoint3D* lengthPoint = toAnimatableLengthPoint3D(value); |
return AnimatableLengthPoint3D::create( |
@@ -42,7 +42,7 @@ PassRefPtr<AnimatableValue> AnimatableLengthPoint3D::interpolateTo(const Animata |
AnimatableValue::interpolate(this->z(), lengthPoint->z(), fraction)); |
} |
-PassRefPtr<AnimatableValue> AnimatableLengthPoint3D::addWith(const AnimatableValue* value) const |
+PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLengthPoint3D::addWith(const AnimatableValue* value) const |
{ |
const AnimatableLengthPoint3D* lengthPoint = toAnimatableLengthPoint3D(value); |
return AnimatableLengthPoint3D::create( |