Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(575)

Unified Diff: third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp

Issue 2575763002: Rename maybeConvertUnderlyingValue() in CSSInterpolationType subclasses (Closed)
Patch Set: rebased Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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(

Powered by Google App Engine
This is Rietveld 408576698