| Index: Source/core/animation/ImageStyleInterpolation.h | 
| diff --git a/Source/core/animation/ImageStyleInterpolation.h b/Source/core/animation/ImageStyleInterpolation.h | 
| index cf799089540df6afcc37224046bdda084aaefa4e..e75d98ddf380f1f31a79c5d9edab001154365869 100644 | 
| --- a/Source/core/animation/ImageStyleInterpolation.h | 
| +++ b/Source/core/animation/ImageStyleInterpolation.h | 
| @@ -11,9 +11,9 @@ | 
| namespace blink { | 
| class ImageStyleInterpolation : public StyleInterpolation { | 
| public: | 
| -    static PassRefPtrWillBeRawPtr<ImageStyleInterpolation> create(CSSValue& start, CSSValue& end, CSSPropertyID id) | 
| +    static ImageStyleInterpolation* create(CSSValue& start, CSSValue& end, CSSPropertyID id) | 
| { | 
| -        return adoptRefWillBeNoop(new ImageStyleInterpolation(&start, &end, id)); | 
| +        return new ImageStyleInterpolation(&start, &end, id); | 
| } | 
|  | 
| DECLARE_VIRTUAL_TRACE(); | 
|  |