| Index: Source/core/animation/LengthSVGInterpolation.h
|
| diff --git a/Source/core/animation/LengthSVGInterpolation.h b/Source/core/animation/LengthSVGInterpolation.h
|
| index 849df1ce35f3aa101979ba321f5da9b06f40f7d4..8b635e89df04c54b10362e5530e28ddc5649765d 100644
|
| --- a/Source/core/animation/LengthSVGInterpolation.h
|
| +++ b/Source/core/animation/LengthSVGInterpolation.h
|
| @@ -27,9 +27,9 @@ public:
|
|
|
| static PassRefPtrWillBeRawPtr<SVGLengthList> createList(const SVGAnimatedPropertyBase&);
|
|
|
| - static PassRefPtrWillBeRawPtr<LengthSVGInterpolation> create(SVGPropertyBase* start, SVGPropertyBase* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute);
|
| + static LengthSVGInterpolation* create(SVGPropertyBase* start, SVGPropertyBase* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute);
|
|
|
| - static PassOwnPtrWillBeRawPtr<InterpolableValue> toInterpolableValue(SVGLength*, const SVGAnimatedPropertyBase*, NonInterpolableType*);
|
| + static InterpolableValue* toInterpolableValue(SVGLength*, const SVGAnimatedPropertyBase*, NonInterpolableType*);
|
|
|
| static PassRefPtrWillBeRawPtr<SVGLength> fromInterpolableValue(const InterpolableValue&, const NonInterpolableType&, const SVGElement*);
|
|
|
| @@ -41,7 +41,7 @@ public:
|
| PassRefPtrWillBeRawPtr<SVGPropertyBase> interpolatedValue(SVGElement&) const final;
|
|
|
| private:
|
| - LengthSVGInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute, const NonInterpolableType& modeData)
|
| + LengthSVGInterpolation(InterpolableValue* start, InterpolableValue* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute, const NonInterpolableType& modeData)
|
| : SVGInterpolation(start, end, attribute)
|
| , m_modeData(modeData)
|
| {
|
|
|