| Index: Source/core/animation/PointSVGInterpolation.h
|
| diff --git a/Source/core/animation/PointSVGInterpolation.h b/Source/core/animation/PointSVGInterpolation.h
|
| index 9f4f16422e73740382ee1b410841e3e4450b48e3..c369eca1106e377b4578fbb27d9e788e46f7b6fa 100644
|
| --- a/Source/core/animation/PointSVGInterpolation.h
|
| +++ b/Source/core/animation/PointSVGInterpolation.h
|
| @@ -15,12 +15,12 @@ public:
|
| typedef SVGPointList ListType;
|
| typedef void NonInterpolableType;
|
|
|
| - static PassOwnPtrWillBeRawPtr<InterpolableList> toInterpolableValue(SVGPropertyBase* item)
|
| + static InterpolableList* toInterpolableValue(SVGPropertyBase* item)
|
| {
|
| - OwnPtrWillBeRawPtr<InterpolableList> result = InterpolableList::create(2);
|
| + InterpolableList* result = InterpolableList::create(2);
|
| result->set(0, InterpolableNumber::create(toSVGPoint(item)->x()));
|
| result->set(1, InterpolableNumber::create(toSVGPoint(item)->y()));
|
| - return result.release();
|
| + return result;
|
| }
|
|
|
| static PassRefPtrWillBeRawPtr<SVGPoint> fromInterpolableValue(const InterpolableValue& value)
|
|
|