Index: Source/core/animation/AnimatableNeutral.h |
diff --git a/Source/core/animation/AnimatableNeutral.h b/Source/core/animation/AnimatableNeutral.h |
index 9b4188f84e82f4757d4c60b1304ec5dacc42463c..e85179eddd243858fc62f94b3f9788b37eeccba9 100644 |
--- a/Source/core/animation/AnimatableNeutral.h |
+++ b/Source/core/animation/AnimatableNeutral.h |
@@ -39,9 +39,14 @@ class AnimatableNeutral FINAL : public AnimatableValue { |
public: |
virtual ~AnimatableNeutral() { } |
+ virtual void trace(Visitor* visitor) OVERRIDE |
+ { |
+ AnimatableValue::trace(visitor); |
+ } |
+ |
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; |