| Index: Source/core/animation/animatable/AnimatableNeutral.h
|
| diff --git a/Source/core/animation/animatable/AnimatableNeutral.h b/Source/core/animation/animatable/AnimatableNeutral.h
|
| index cca9f77bac2c53587d7e8abf24e570b301705f80..5bb858f4f5b2415af36ab0a6099ec87fee8ca619 100644
|
| --- a/Source/core/animation/animatable/AnimatableNeutral.h
|
| +++ b/Source/core/animation/animatable/AnimatableNeutral.h
|
| @@ -39,11 +39,9 @@ class AnimatableNeutral final : public AnimatableValue {
|
| public:
|
| ~AnimatableNeutral() override { }
|
|
|
| - DEFINE_INLINE_VIRTUAL_TRACE() { AnimatableValue::trace(visitor); }
|
| -
|
| protected:
|
| - static PassRefPtrWillBeRawPtr<AnimatableNeutral> create() { return adoptRefWillBeNoop(new AnimatableNeutral()); }
|
| - PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue* value, double fraction) const override
|
| + static PassRefPtr<AnimatableNeutral> create() { return adoptRef(new AnimatableNeutral()); }
|
| + PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue* value, double fraction) const override
|
| {
|
| ASSERT_NOT_REACHED();
|
| return nullptr;
|
|
|