| Index: Source/core/animation/DeferredLegacyStyleInterpolation.h | 
| diff --git a/Source/core/animation/DeferredLegacyStyleInterpolation.h b/Source/core/animation/DeferredLegacyStyleInterpolation.h | 
| index 993d03761436ef8d23142898a16b5b7fa546f27f..03ee96de404fdfd26c51fb2550fd6e98d5a583a9 100644 | 
| --- a/Source/core/animation/DeferredLegacyStyleInterpolation.h | 
| +++ b/Source/core/animation/DeferredLegacyStyleInterpolation.h | 
| @@ -21,9 +21,9 @@ class CSSValueList; | 
|  | 
| class CORE_EXPORT DeferredLegacyStyleInterpolation : public StyleInterpolation { | 
| public: | 
| -    static PassRefPtrWillBeRawPtr<DeferredLegacyStyleInterpolation> create(PassRefPtrWillBeRawPtr<CSSValue> start, PassRefPtrWillBeRawPtr<CSSValue> end, CSSPropertyID id) | 
| +    static DeferredLegacyStyleInterpolation* create(PassRefPtrWillBeRawPtr<CSSValue> start, PassRefPtrWillBeRawPtr<CSSValue> end, CSSPropertyID id) | 
| { | 
| -        return adoptRefWillBeNoop(new DeferredLegacyStyleInterpolation(start, end, id)); | 
| +        return new DeferredLegacyStyleInterpolation(start, end, id); | 
| } | 
|  | 
| virtual void apply(StyleResolverState&) const override; | 
| @@ -53,7 +53,7 @@ private: | 
|  | 
| RefPtrWillBeMember<CSSValue> m_startCSSValue; | 
| RefPtrWillBeMember<CSSValue> m_endCSSValue; | 
| -    mutable RefPtrWillBeMember<LegacyStyleInterpolation> m_innerInterpolation; | 
| +    mutable Member<LegacyStyleInterpolation> m_innerInterpolation; | 
| mutable bool m_outdated; | 
| }; | 
|  | 
|  |