| Index: Source/core/animation/LegacyStyleInterpolation.h
|
| diff --git a/Source/core/animation/LegacyStyleInterpolation.h b/Source/core/animation/LegacyStyleInterpolation.h
|
| index aceb97d6b844261d3dcc71dbf68058b6e8102aa7..1a1e41935dbd62cd0237e277c61144cf1672055f 100644
|
| --- a/Source/core/animation/LegacyStyleInterpolation.h
|
| +++ b/Source/core/animation/LegacyStyleInterpolation.h
|
| @@ -12,7 +12,7 @@ namespace blink {
|
|
|
| class LegacyStyleInterpolation : public StyleInterpolation {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<LegacyStyleInterpolation> create(PassRefPtrWillBeRawPtr<AnimatableValue> start, PassRefPtrWillBeRawPtr<AnimatableValue> end, CSSPropertyID id)
|
| + static PassRefPtrWillBeRawPtr<LegacyStyleInterpolation> create(PassRefPtr<AnimatableValue> start, PassRefPtr<AnimatableValue> end, CSSPropertyID id)
|
| {
|
| return adoptRefWillBeNoop(new LegacyStyleInterpolation(InterpolableAnimatableValue::create(start), InterpolableAnimatableValue::create(end), id));
|
| }
|
| @@ -23,7 +23,7 @@ public:
|
| }
|
|
|
| bool isLegacyStyleInterpolation() const final { return true; }
|
| - PassRefPtrWillBeRawPtr<AnimatableValue> currentValue() const
|
| + PassRefPtr<AnimatableValue> currentValue() const
|
| {
|
| return toInterpolableAnimatableValue(m_cachedValue.get())->value();
|
| }
|
| @@ -34,7 +34,7 @@ public:
|
| }
|
|
|
| private:
|
| - LegacyStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID id)
|
| + LegacyStyleInterpolation(PassOwnPtr<InterpolableValue> start, PassOwnPtr<InterpolableValue> end, CSSPropertyID id)
|
| : StyleInterpolation(start, end, id)
|
| {
|
| }
|
|
|