Index: third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp |
diff --git a/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp |
index 0e10f90c211f043aa83a413449ba61565b869798..30cd2a8eb59cd74d2dd38efe638150e9363ec1cf 100644 |
--- a/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp |
+++ b/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp |
@@ -149,11 +149,12 @@ PairwiseInterpolationValue CSSImageListInterpolationType::maybeMergeSingles( |
CSSImageInterpolationType::staticMergeSingleConversions); |
} |
-InterpolationValue CSSImageListInterpolationType::maybeConvertUnderlyingValue( |
- const InterpolationEnvironment& environment) const { |
+InterpolationValue |
+CSSImageListInterpolationType::maybeConvertStandardPropertyUnderlyingValue( |
+ const StyleResolverState& state) const { |
StyleImageList underlyingImageList; |
- ImageListPropertyFunctions::getImageList( |
- cssProperty(), *environment.state().style(), underlyingImageList); |
+ ImageListPropertyFunctions::getImageList(cssProperty(), *state.style(), |
+ underlyingImageList); |
return maybeConvertStyleImageList(underlyingImageList); |
} |