| Index: Source/core/animation/AnimatableNeutral.h
|
| diff --git a/Source/core/animation/AnimatableNeutral.h b/Source/core/animation/AnimatableNeutral.h
|
| index 9b4188f84e82f4757d4c60b1304ec5dacc42463c..30b5cb7ac9b0fd946d01fbe757fa5fda901b980b 100644
|
| --- a/Source/core/animation/AnimatableNeutral.h
|
| +++ b/Source/core/animation/AnimatableNeutral.h
|
| @@ -39,9 +39,11 @@ class AnimatableNeutral FINAL : public AnimatableValue {
|
| public:
|
| virtual ~AnimatableNeutral() { }
|
|
|
| + virtual void trace(Visitor* visitor) OVERRIDE { }
|
| +
|
| protected:
|
| - static PassRefPtr<AnimatableNeutral> create() { return adoptRef(new AnimatableNeutral()); }
|
| - virtual PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue* value, double fraction) const OVERRIDE
|
| + static PassRefPtrWillBeRawPtr<AnimatableNeutral> create() { return adoptRefWillBeNoop(new AnimatableNeutral()); }
|
| + virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue* value, double fraction) const OVERRIDE
|
| {
|
| ASSERT_NOT_REACHED();
|
| return nullptr;
|
|
|