| Index: Source/core/animation/ConstantStyleInterpolation.h
|
| diff --git a/Source/core/animation/ConstantStyleInterpolation.h b/Source/core/animation/ConstantStyleInterpolation.h
|
| index 504e06c3c2aa1824b8daacd2e9440f7e0e1b2b21..0ad6ed1e3a9aa25ae569c2fdbf349351ab7d5ad5 100644
|
| --- a/Source/core/animation/ConstantStyleInterpolation.h
|
| +++ b/Source/core/animation/ConstantStyleInterpolation.h
|
| @@ -12,9 +12,9 @@ namespace blink {
|
|
|
| class ConstantStyleInterpolation : public StyleInterpolation {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<ConstantStyleInterpolation> create(CSSValue* value, CSSPropertyID id)
|
| + static ConstantStyleInterpolation* create(CSSValue* value, CSSPropertyID id)
|
| {
|
| - return adoptRefWillBeNoop(new ConstantStyleInterpolation(value, id));
|
| + return new ConstantStyleInterpolation(value, id);
|
| }
|
|
|
| virtual void apply(StyleResolverState& state) const override
|
|
|