| Index: Source/core/animation/animatable/AnimatableTransform.h
|
| diff --git a/Source/core/animation/animatable/AnimatableTransform.h b/Source/core/animation/animatable/AnimatableTransform.h
|
| index 3e8ebfca3e5657c6ad9e9e8ab1f0c8ad6b3f72d4..15197cd0b82a7372bd0f419b1a3e8a99b7996fc1 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:
|
| ~AnimatableTransform() override { }
|
| - 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:
|
| - PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
|
| + AnimatableValue* interpolateTo(const AnimatableValue*, double fraction) const override;
|
|
|
| private:
|
| explicit AnimatableTransform(const TransformOperations& transform)
|
| @@ -66,4 +66,3 @@ DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableTransform, isTransform());
|
| } // namespace blink
|
|
|
| #endif // AnimatableTransform_h
|
| -
|
|
|