Index: Source/core/animation/AnimatableShapeValue.h |
diff --git a/Source/core/animation/AnimatableShapeValue.h b/Source/core/animation/AnimatableShapeValue.h |
index 99246937ee921c042d5b89b0ecff1e728b0287c7..4603554a5833f62c87381012d1282457c1132bee 100644 |
--- a/Source/core/animation/AnimatableShapeValue.h |
+++ b/Source/core/animation/AnimatableShapeValue.h |
@@ -39,14 +39,16 @@ namespace WebCore { |
class AnimatableShapeValue FINAL : public AnimatableValue { |
public: |
virtual ~AnimatableShapeValue() { } |
- static PassRefPtr<AnimatableShapeValue> create(ShapeValue* shape) |
+ static PassRefPtrWillBeRawPtr<AnimatableShapeValue> create(ShapeValue* shape) |
{ |
- return adoptRef(new AnimatableShapeValue(shape)); |
+ return adoptRefWillBeNoop(new AnimatableShapeValue(shape)); |
} |
ShapeValue* shapeValue() const { return m_shape.get(); } |
+ virtual void trace(Visitor*) OVERRIDE; |
+ |
protected: |
- virtual PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE; |
+ virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE; |
virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const OVERRIDE; |
private: |