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

Unified Diff: third_party/WebKit/Source/core/animation/CSSFontWeightInterpolationType.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/CSSFontWeightInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSFontWeightInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSFontWeightInterpolationType.cpp
index 2c5699eb773bb9594bb18b4fee7ebbd73cfa9470..1c5c182cf0ceb9df1cbb625eeafc3f79f8c81636 100644
--- a/third_party/WebKit/Source/core/animation/CSSFontWeightInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSFontWeightInterpolationType.cpp
@@ -127,9 +127,10 @@ InterpolationValue CSSFontWeightInterpolationType::maybeConvertValue(
}
}
-InterpolationValue CSSFontWeightInterpolationType::maybeConvertUnderlyingValue(
- const InterpolationEnvironment& environment) const {
- return createFontWeightValue(environment.state().style()->fontWeight());
+InterpolationValue
+CSSFontWeightInterpolationType::maybeConvertStandardPropertyUnderlyingValue(
+ const StyleResolverState& state) const {
+ return createFontWeightValue(state.style()->fontWeight());
}
void CSSFontWeightInterpolationType::applyStandardPropertyValue(

Powered by Google App Engine
This is Rietveld 408576698