| 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..c62f8c0a3a75572e54ab992015550d884a6bd3e0 100644
|
| --- a/Source/core/animation/animatable/AnimatableTransform.h
|
| +++ b/Source/core/animation/animatable/AnimatableTransform.h
|
| @@ -40,16 +40,14 @@ namespace blink {
|
| class CORE_EXPORT AnimatableTransform final : public AnimatableValue {
|
| public:
|
| ~AnimatableTransform() override { }
|
| - static PassRefPtrWillBeRawPtr<AnimatableTransform> create(const TransformOperations&);
|
| + static PassRefPtr<AnimatableTransform> create(const TransformOperations&);
|
| const TransformOperations& transformOperations() const
|
| {
|
| return m_transform;
|
| }
|
|
|
| - DEFINE_INLINE_VIRTUAL_TRACE() { AnimatableValue::trace(visitor); }
|
| -
|
| protected:
|
| - PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
|
| + PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
|
|
|
| private:
|
| explicit AnimatableTransform(const TransformOperations& transform)
|
|
|