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

Unified Diff: third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.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/CSSFontSizeInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.cpp
index 72522469ed8a4adbd521c29adde30d9b677f4be0..faaa891813eb181ee70c0e48e030ecd29c5b648e 100644
--- a/third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.cpp
@@ -126,9 +126,10 @@ InterpolationValue CSSFontSizeInterpolationType::maybeConvertValue(
conversionCheckers);
}
-InterpolationValue CSSFontSizeInterpolationType::maybeConvertUnderlyingValue(
- const InterpolationEnvironment& environment) const {
- return convertFontSize(environment.state().style()->specifiedFontSize());
+InterpolationValue
+CSSFontSizeInterpolationType::maybeConvertStandardPropertyUnderlyingValue(
+ const StyleResolverState& state) const {
+ return convertFontSize(state.style()->specifiedFontSize());
}
void CSSFontSizeInterpolationType::applyStandardPropertyValue(

Powered by Google App Engine
This is Rietveld 408576698