Index: third_party/WebKit/Source/core/animation/CSSShadowListInterpolationType.cpp |
diff --git a/third_party/WebKit/Source/core/animation/CSSShadowListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSShadowListInterpolationType.cpp |
index 3318db7b06577ecb22527c485fdca424a106ceb7..eb78765927e6314800978f1ef7b4071c0170c3ac 100644 |
--- a/third_party/WebKit/Source/core/animation/CSSShadowListInterpolationType.cpp |
+++ b/third_party/WebKit/Source/core/animation/CSSShadowListInterpolationType.cpp |
@@ -119,13 +119,14 @@ PairwiseInterpolationValue CSSShadowListInterpolationType::maybeMergeSingles( |
ShadowInterpolationFunctions::maybeMergeSingles); |
} |
-InterpolationValue CSSShadowListInterpolationType::maybeConvertUnderlyingValue( |
- const InterpolationEnvironment& environment) const { |
- if (!environment.state().style()) |
+InterpolationValue |
+CSSShadowListInterpolationType::maybeConvertStandardPropertyUnderlyingValue( |
+ const StyleResolverState& state) const { |
+ if (!state.style()) |
return nullptr; |
- return convertShadowList(ShadowListPropertyFunctions::getShadowList( |
- cssProperty(), *environment.state().style()), |
- environment.state().style()->effectiveZoom()); |
+ return convertShadowList( |
+ ShadowListPropertyFunctions::getShadowList(cssProperty(), *state.style()), |
+ state.style()->effectiveZoom()); |
} |
void CSSShadowListInterpolationType::composite( |