Index: third_party/WebKit/Source/core/animation/CSSLengthListInterpolationType.cpp |
diff --git a/third_party/WebKit/Source/core/animation/CSSLengthListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSLengthListInterpolationType.cpp |
index c4f8a65a6c19c122d47a99dde094be56f3ac78ce..c99029fcee5abd9cf159a50f408eca4df7d58c5d 100644 |
--- a/third_party/WebKit/Source/core/animation/CSSLengthListInterpolationType.cpp |
+++ b/third_party/WebKit/Source/core/animation/CSSLengthListInterpolationType.cpp |
@@ -126,14 +126,15 @@ PairwiseInterpolationValue CSSLengthListInterpolationType::maybeMergeSingles( |
LengthInterpolationFunctions::mergeSingles); |
} |
-InterpolationValue CSSLengthListInterpolationType::maybeConvertUnderlyingValue( |
- const InterpolationEnvironment& environment) const { |
+InterpolationValue |
+CSSLengthListInterpolationType::maybeConvertStandardPropertyUnderlyingValue( |
+ const StyleResolverState& state) const { |
Vector<Length> underlyingLengthList; |
- if (!LengthListPropertyFunctions::getLengthList( |
- cssProperty(), *environment.state().style(), underlyingLengthList)) |
+ if (!LengthListPropertyFunctions::getLengthList(cssProperty(), *state.style(), |
+ underlyingLengthList)) |
return nullptr; |
return maybeConvertLengthList(underlyingLengthList, |
- environment.state().style()->effectiveZoom()); |
+ state.style()->effectiveZoom()); |
} |
void CSSLengthListInterpolationType::composite( |