Index: third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp |
diff --git a/third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp |
index a1e9934def6ee5a145d288e7394265ce534c8f46..aa63b354e183725b24e1fc441b9c94ceda0fc15e 100644 |
--- a/third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp |
+++ b/third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp |
@@ -137,11 +137,11 @@ InterpolationValue CSSTranslateInterpolationType::maybeConvertValue( |
return InterpolationValue(std::move(result)); |
} |
-InterpolationValue CSSTranslateInterpolationType::maybeConvertUnderlyingValue( |
- const InterpolationEnvironment& environment) const { |
- return convertTranslateOperation( |
- environment.state().style()->translate(), |
- environment.state().style()->effectiveZoom()); |
+InterpolationValue |
+CSSTranslateInterpolationType::maybeConvertStandardPropertyUnderlyingValue( |
+ const StyleResolverState& state) const { |
+ return convertTranslateOperation(state.style()->translate(), |
+ state.style()->effectiveZoom()); |
} |
void CSSTranslateInterpolationType::applyStandardPropertyValue( |