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

Unified Diff: third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.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/CSSBorderImageLengthBoxInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.cpp
index bec967f041c701ecf9f3d2fd4f4530bc5c5f15fb..ae4f2076811176fd40265a15f7e1b91930971ce6 100644
--- a/third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSBorderImageLengthBoxInterpolationType.cpp
@@ -261,10 +261,10 @@ InterpolationValue CSSBorderImageLengthBoxInterpolationType::maybeConvertValue(
SideNumbers(quad), std::move(nonInterpolableValues)));
}
-InterpolationValue
-CSSBorderImageLengthBoxInterpolationType::maybeConvertUnderlyingValue(
- const InterpolationEnvironment& environment) const {
- const ComputedStyle& style = *environment.state().style();
+InterpolationValue CSSBorderImageLengthBoxInterpolationType::
+ maybeConvertStandardPropertyUnderlyingValue(
+ const StyleResolverState& state) const {
+ const ComputedStyle& style = *state.style();
return convertBorderImageLengthBox(
BorderImageLengthBoxPropertyFunctions::getBorderImageLengthBox(
cssProperty(), style),

Powered by Google App Engine
This is Rietveld 408576698