| Index: Source/core/animation/animatable/AnimatableColor.h
|
| diff --git a/Source/core/animation/animatable/AnimatableColor.h b/Source/core/animation/animatable/AnimatableColor.h
|
| index b6f05dbf66ad2d63be7954aeeaf4d07f138dd9d5..3033fbd1579bbcc4cc5d05a0cad60d6594bf9de1 100644
|
| --- a/Source/core/animation/animatable/AnimatableColor.h
|
| +++ b/Source/core/animation/animatable/AnimatableColor.h
|
| @@ -60,14 +60,14 @@ private:
|
| // but inefficient.
|
| class CORE_EXPORT AnimatableColor final : public AnimatableValue {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<AnimatableColor> create(const AnimatableColorImpl&, const AnimatableColorImpl& visitedLinkColor);
|
| + static AnimatableColor* create(const AnimatableColorImpl&, const AnimatableColorImpl& visitedLinkColor);
|
| Color color() const { return m_color.toColor(); }
|
| Color visitedLinkColor() const { return m_visitedLinkColor.toColor(); }
|
|
|
| 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:
|
| AnimatableColor(const AnimatableColorImpl& color, const AnimatableColorImpl& visitedLinkColor)
|
|
|