| Index: Source/core/animation/ImageSliceStyleInterpolation.h | 
| diff --git a/Source/core/animation/ImageSliceStyleInterpolation.h b/Source/core/animation/ImageSliceStyleInterpolation.h | 
| index c6ca1128a962cecc0cc3331f8ba20fb13979e549..42ae3cb2233c3aba05d82169fd0b40cdb3362d59 100644 | 
| --- a/Source/core/animation/ImageSliceStyleInterpolation.h | 
| +++ b/Source/core/animation/ImageSliceStyleInterpolation.h | 
| @@ -14,7 +14,7 @@ class CSSBorderImageSliceValue; | 
| class ImageSliceStyleInterpolation : public StyleInterpolation { | 
| public: | 
| static bool usesDefaultInterpolation(const CSSValue&, const CSSValue&); | 
| -    static PassRefPtrWillBeRawPtr<ImageSliceStyleInterpolation> maybeCreate(const CSSValue&, const CSSValue&, CSSPropertyID); | 
| +    static ImageSliceStyleInterpolation* maybeCreate(const CSSValue&, const CSSValue&, CSSPropertyID); | 
|  | 
| virtual void apply(StyleResolverState&) const override; | 
| DECLARE_VIRTUAL_TRACE(); | 
| @@ -27,7 +27,7 @@ public: | 
| }; | 
|  | 
| private: | 
| -    ImageSliceStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID property, Metadata metadata) | 
| +    ImageSliceStyleInterpolation(InterpolableValue* start, InterpolableValue* end, CSSPropertyID property, Metadata metadata) | 
| : StyleInterpolation(start, end, property) | 
| , m_metadata(metadata) | 
| { } | 
|  |