| Index: Source/core/animation/AngleSVGInterpolation.h
|
| diff --git a/Source/core/animation/AngleSVGInterpolation.h b/Source/core/animation/AngleSVGInterpolation.h
|
| index a4c8f8ca095d3b76e1bf5828913379b469bd9bc4..7a6e2e76904796378d225b1dcb423f569f8cb313 100644
|
| --- a/Source/core/animation/AngleSVGInterpolation.h
|
| +++ b/Source/core/animation/AngleSVGInterpolation.h
|
| @@ -35,12 +35,12 @@ public:
|
| }
|
|
|
| private:
|
| - AngleSVGInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute)
|
| + AngleSVGInterpolation(PassOwnPtr<InterpolableValue> start, PassOwnPtr<InterpolableValue> end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute)
|
| : SVGInterpolation(start, end, attribute)
|
| {
|
| }
|
|
|
| - static PassOwnPtrWillBeRawPtr<InterpolableValue> toInterpolableValue(SVGPropertyBase* value)
|
| + static PassOwnPtr<InterpolableValue> toInterpolableValue(SVGPropertyBase* value)
|
| {
|
| return InterpolableNumber::create(toSVGAngle(value)->value());
|
| }
|
|
|