| Index: Source/core/animation/DefaultSVGInterpolation.h
 | 
| diff --git a/Source/core/animation/DefaultSVGInterpolation.h b/Source/core/animation/DefaultSVGInterpolation.h
 | 
| index 96836eafbe9849219f8c3663185f6c589218d207..c258139750916b3074e2edf8b4d388c648046b60 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);
 | 
|      }
 | 
|  
 | 
|      PassRefPtrWillBeRawPtr<SVGPropertyBase> interpolatedValue(SVGElement&) const final;
 | 
| 
 |