| Index: Source/core/animation/animatable/AnimatableLength.cpp
|
| diff --git a/Source/core/animation/animatable/AnimatableLength.cpp b/Source/core/animation/animatable/AnimatableLength.cpp
|
| index 3787ab3744da01fb5031e95bebe224ce0d8e05d2..e4025e1a29bb1c6944e70b6a8ffa78dce75c9b30 100644
|
| --- a/Source/core/animation/animatable/AnimatableLength.cpp
|
| +++ b/Source/core/animation/animatable/AnimatableLength.cpp
|
| @@ -67,7 +67,7 @@ Length AnimatableLength::length(float zoom, ValueRange range) const
|
| return Length(CalculationValue::create(PixelsAndPercent(m_pixels * zoom, m_percent), range));
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLength::interpolateTo(const AnimatableValue* value, double fraction) const
|
| +AnimatableValue* AnimatableLength::interpolateTo(const AnimatableValue* value, double fraction) const
|
| {
|
| const AnimatableLength* length = toAnimatableLength(value);
|
| return create(blend(m_pixels, length->m_pixels, fraction), blend(m_percent, length->m_percent, fraction),
|
|
|