| 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 81b999702a28e4eb44ba0638e9d88326d085ced3..7d79676668c367e86a1bb09d6768b98b6ca103bd 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
|
| @@ -109,13 +109,13 @@ PairwiseInterpolationValue CSSLengthInterpolationType::maybeMergeSingles(
|
|
|
| InterpolationValue
|
| CSSLengthInterpolationType::maybeConvertStandardPropertyUnderlyingValue(
|
| - const StyleResolverState& state) const {
|
| + const ComputedStyle& style) const {
|
| Length underlyingLength;
|
| - if (!LengthPropertyFunctions::getLength(cssProperty(), *state.style(),
|
| + if (!LengthPropertyFunctions::getLength(cssProperty(), style,
|
| underlyingLength))
|
| return nullptr;
|
| - return LengthInterpolationFunctions::maybeConvertLength(
|
| - underlyingLength, effectiveZoom(*state.style()));
|
| + return LengthInterpolationFunctions::maybeConvertLength(underlyingLength,
|
| + effectiveZoom(style));
|
| }
|
|
|
| const CSSValue* CSSLengthInterpolationType::createCSSValue(
|
|
|