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

Unified Diff: third_party/WebKit/Source/core/animation/CSSImageInterpolationType.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/CSSImageInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSImageInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSImageInterpolationType.cpp
index c3be22717af8079e66715efbfeddd3e21bba0f75..a191025b83a49fcfc2a7338b066055cd1d8f2a01 100644
--- a/third_party/WebKit/Source/core/animation/CSSImageInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSImageInterpolationType.cpp
@@ -219,11 +219,11 @@ InterpolationValue CSSImageInterpolationType::maybeConvertValue(
return maybeConvertCSSValue(value, true);
}
-InterpolationValue CSSImageInterpolationType::maybeConvertUnderlyingValue(
- const InterpolationEnvironment& environment) const {
+InterpolationValue
+CSSImageInterpolationType::maybeConvertStandardPropertyUnderlyingValue(
+ const StyleResolverState& state) const {
return maybeConvertStyleImage(
- ImagePropertyFunctions::getStyleImage(cssProperty(),
- *environment.state().style()),
+ ImagePropertyFunctions::getStyleImage(cssProperty(), *state.style()),
true);
}

Powered by Google App Engine
This is Rietveld 408576698