| Index: Source/core/animation/RectSVGInterpolation.h
 | 
| diff --git a/Source/core/animation/RectSVGInterpolation.h b/Source/core/animation/RectSVGInterpolation.h
 | 
| index 3f0ef193891366c61831dd712e9d4f9a8366f49e..99d09f5797f05fdc2aac44ec77b5973a3441ba37 100644
 | 
| --- a/Source/core/animation/RectSVGInterpolation.h
 | 
| +++ b/Source/core/animation/RectSVGInterpolation.h
 | 
| @@ -14,9 +14,9 @@ class SVGRect;
 | 
|  
 | 
|  class RectSVGInterpolation : public SVGInterpolation {
 | 
|  public:
 | 
| -    static PassRefPtrWillBeRawPtr<RectSVGInterpolation> create(SVGPropertyBase* start, SVGPropertyBase* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute)
 | 
| +    static RectSVGInterpolation* create(SVGPropertyBase* start, SVGPropertyBase* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute)
 | 
|      {
 | 
| -        return adoptRefWillBeNoop(new RectSVGInterpolation(toInterpolableValue(start), toInterpolableValue(end), attribute));
 | 
| +        return new RectSVGInterpolation(toInterpolableValue(start), toInterpolableValue(end), attribute);
 | 
|      }
 | 
|  
 | 
|      PassRefPtrWillBeRawPtr<SVGPropertyBase> interpolatedValue(SVGElement&) const final
 | 
| @@ -30,12 +30,12 @@ public:
 | 
|      }
 | 
|  
 | 
|  private:
 | 
| -    RectSVGInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute)
 | 
| +    RectSVGInterpolation(InterpolableValue* start, InterpolableValue* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute)
 | 
|          : SVGInterpolation(start, end, attribute)
 | 
|      {
 | 
|      }
 | 
|  
 | 
| -    static PassOwnPtrWillBeRawPtr<InterpolableValue> toInterpolableValue(SVGPropertyBase*);
 | 
| +    static InterpolableValue* toInterpolableValue(SVGPropertyBase*);
 | 
|  
 | 
|      static PassRefPtrWillBeRawPtr<SVGRect> fromInterpolableValue(const InterpolableValue&);
 | 
|  };
 | 
| 
 |