Index: Source/core/animation/DefaultSVGInterpolation.h |
diff --git a/Source/core/animation/DefaultSVGInterpolation.h b/Source/core/animation/DefaultSVGInterpolation.h |
index 0d641a4d84d597b8de63e8b72b6ed2e5c1d9b198..37cca61a2a4a283a65a458f2f0cc7ef211afe4d8 100644 |
--- a/Source/core/animation/DefaultSVGInterpolation.h |
+++ b/Source/core/animation/DefaultSVGInterpolation.h |
@@ -11,9 +11,9 @@ namespace blink { |
class DefaultSVGInterpolation : public SVGInterpolation { |
public: |
- static PassRefPtrWillBeRawPtr<DefaultSVGInterpolation> create(SVGPropertyBase* start, SVGPropertyBase* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute) |
+ static DefaultSVGInterpolation* create(SVGPropertyBase* start, SVGPropertyBase* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute) |
{ |
- return adoptRefWillBeNoop(new DefaultSVGInterpolation(start, end, attribute)); |
+ return new DefaultSVGInterpolation(start, end, attribute); |
} |
virtual PassRefPtrWillBeRawPtr<SVGPropertyBase> interpolatedValue(SVGElement&) const override final; |