| Index: Source/core/animation/animatable/AnimatableImage.h
|
| diff --git a/Source/core/animation/animatable/AnimatableImage.h b/Source/core/animation/animatable/AnimatableImage.h
|
| index e54bd4e745451219478f6fbaf2d5ba4d88d2225e..e82c1016b369499c3128afda85642c3e18a0eaee 100644
|
| --- a/Source/core/animation/animatable/AnimatableImage.h
|
| +++ b/Source/core/animation/animatable/AnimatableImage.h
|
| @@ -40,7 +40,7 @@ namespace blink {
|
| class AnimatableImage final : public AnimatableValue {
|
| public:
|
| ~AnimatableImage() override { }
|
| - static PassRefPtrWillBeRawPtr<AnimatableImage> create(PassRefPtrWillBeRawPtr<CSSValue> value)
|
| + static PassRefPtrWillBeRawPtr<AnimatableImage> create(PassRefPtr<CSSValue> value)
|
| {
|
| return adoptRefWillBeNoop(new AnimatableImage(value));
|
| }
|
| @@ -48,7 +48,6 @@ public:
|
|
|
| DEFINE_INLINE_VIRTUAL_TRACE()
|
| {
|
| - visitor->trace(m_value);
|
| AnimatableValue::trace(visitor);
|
| }
|
|
|
| @@ -57,7 +56,7 @@ protected:
|
| bool usesDefaultInterpolationWith(const AnimatableValue*) const override;
|
|
|
| private:
|
| - AnimatableImage(PassRefPtrWillBeRawPtr<CSSValue> value)
|
| + AnimatableImage(PassRefPtr<CSSValue> value)
|
| : m_value(value)
|
| {
|
| ASSERT(m_value.get());
|
| @@ -65,7 +64,7 @@ private:
|
| AnimatableType type() const override { return TypeImage; }
|
| bool equalTo(const AnimatableValue*) const override;
|
|
|
| - const RefPtrWillBeMember<CSSValue> m_value;
|
| + const RefPtr<CSSValue> m_value;
|
| };
|
|
|
| DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableImage, isImage());
|
|
|