| Index: third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
|
| index ccae56dc3fae6b5298073d6dbd3120033d771175..0bb78e13d797d231357a19f72a1ad918151ff686 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
|
| @@ -57,13 +57,6 @@
|
| OwnPtr<InterpolableList> interpolableList = createNeutralInterpolableValue();
|
| interpolableList->set(CSSPrimitiveValue::UnitTypePixels, InterpolableNumber::create(pixels));
|
| return interpolableList.release();
|
| -}
|
| -
|
| -InterpolationValue CSSLengthInterpolationType::createInterpolablePercent(double percent)
|
| -{
|
| - OwnPtr<InterpolableList> interpolableList = createNeutralInterpolableValue();
|
| - interpolableList->set(CSSPrimitiveValue::UnitTypePercentage, InterpolableNumber::create(percent));
|
| - return InterpolationValue(interpolableList.release(), CSSLengthNonInterpolableValue::create(true));
|
| }
|
|
|
| InterpolationValue CSSLengthInterpolationType::maybeConvertLength(const Length& length, float zoom)
|
|
|