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

Unified Diff: third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.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/CSSTextIndentInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.cpp
index 661af64fb88efd3a038e801bd02aee897cf173f1..6b5f2aa0151d5f9ccf5d283d000b33e10445aa81 100644
--- a/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.cpp
@@ -176,9 +176,10 @@ InterpolationValue CSSTextIndentInterpolationType::maybeConvertValue(
length.nonInterpolableValue.release(), IndentMode(line, type)));
}
-InterpolationValue CSSTextIndentInterpolationType::maybeConvertUnderlyingValue(
- const InterpolationEnvironment& environment) const {
- const ComputedStyle& style = *environment.state().style();
+InterpolationValue
+CSSTextIndentInterpolationType::maybeConvertStandardPropertyUnderlyingValue(
+ const StyleResolverState& state) const {
+ const ComputedStyle& style = *state.style();
return createValue(style.textIndent(), IndentMode(style),
style.effectiveZoom());
}

Powered by Google App Engine
This is Rietveld 408576698