Index: Source/core/animation/animatable/AnimatableTransform.h |
diff --git a/Source/core/animation/animatable/AnimatableTransform.h b/Source/core/animation/animatable/AnimatableTransform.h |
index 76475385776645c34ce894d4cc95c6dd9f2d4774..aae98846427e9b12fc8b57c5a58eb7709e5c06fb 100644 |
--- a/Source/core/animation/animatable/AnimatableTransform.h |
+++ b/Source/core/animation/animatable/AnimatableTransform.h |
@@ -40,7 +40,7 @@ namespace blink { |
class CORE_EXPORT AnimatableTransform final : public AnimatableValue { |
public: |
virtual ~AnimatableTransform() { } |
- static PassRefPtrWillBeRawPtr<AnimatableTransform> create(const TransformOperations&); |
+ static AnimatableTransform* create(const TransformOperations&); |
const TransformOperations& transformOperations() const |
{ |
return m_transform; |
@@ -49,7 +49,7 @@ public: |
DEFINE_INLINE_VIRTUAL_TRACE() { AnimatableValue::trace(visitor); } |
protected: |
- virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override; |
+ virtual AnimatableValue* interpolateTo(const AnimatableValue*, double fraction) const override; |
private: |
explicit AnimatableTransform(const TransformOperations& transform) |