| Index: Source/core/animation/animatable/AnimatableNeutral.h
|
| diff --git a/Source/core/animation/animatable/AnimatableNeutral.h b/Source/core/animation/animatable/AnimatableNeutral.h
|
| index 76bb9b8b10904ec98094cf59edfd46be24f3dd1d..9014ccac9ee1f3bb689056ec3afd47096230b23d 100644
|
| --- a/Source/core/animation/animatable/AnimatableNeutral.h
|
| +++ b/Source/core/animation/animatable/AnimatableNeutral.h
|
| @@ -42,8 +42,8 @@ public:
|
| DEFINE_INLINE_VIRTUAL_TRACE() { AnimatableValue::trace(visitor); }
|
|
|
| protected:
|
| - static PassRefPtrWillBeRawPtr<AnimatableNeutral> create() { return adoptRefWillBeNoop(new AnimatableNeutral()); }
|
| - virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue* value, double fraction) const override
|
| + static AnimatableNeutral* create() { return new AnimatableNeutral(); }
|
| + virtual AnimatableValue* interpolateTo(const AnimatableValue* value, double fraction) const override
|
| {
|
| ASSERT_NOT_REACHED();
|
| return nullptr;
|
|
|