Index: Source/core/animation/PathSVGInterpolation.h |
diff --git a/Source/core/animation/PathSVGInterpolation.h b/Source/core/animation/PathSVGInterpolation.h |
index 24b90a547a59f3d129a78cb970706cbf3fdab351..45a0cfa28c12722375554d45011e470823bf423f 100644 |
--- a/Source/core/animation/PathSVGInterpolation.h |
+++ b/Source/core/animation/PathSVGInterpolation.h |
@@ -12,7 +12,7 @@ namespace blink { |
class PathSVGInterpolation : public SVGInterpolation { |
public: |
- static PassRefPtrWillBeRawPtr<PathSVGInterpolation> maybeCreate(SVGPropertyBase* start, SVGPropertyBase* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute); |
+ static PathSVGInterpolation* maybeCreate(SVGPropertyBase* start, SVGPropertyBase* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute); |
virtual PassRefPtrWillBeRawPtr<SVGPropertyBase> interpolatedValue(SVGElement&) const override final; |
@@ -22,7 +22,7 @@ public: |
} |
private: |
- PathSVGInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute, |
+ PathSVGInterpolation(InterpolableValue* start, InterpolableValue* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute, |
Vector<SVGPathSegType> pathSegTypes) |
: SVGInterpolation(start, end, attribute) |
{ |