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

Unified Diff: third_party/WebKit/Source/core/animation/CSSRotateInterpolationType.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/CSSRotateInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSRotateInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSRotateInterpolationType.cpp
index fb0bbac54a48f4a0d09820f132c15e20fd24669b..7753731ef05eacdb9e26303452f841783c392395 100644
--- a/third_party/WebKit/Source/core/animation/CSSRotateInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSRotateInterpolationType.cpp
@@ -186,9 +186,10 @@ PairwiseInterpolationValue CSSRotateInterpolationType::maybeMergeSingles(
toCSSRotateNonInterpolableValue(*end.nonInterpolableValue)));
}
-InterpolationValue CSSRotateInterpolationType::maybeConvertUnderlyingValue(
- const InterpolationEnvironment& environment) const {
- return convertRotation(getRotation(*environment.state().style()));
+InterpolationValue
+CSSRotateInterpolationType::maybeConvertStandardPropertyUnderlyingValue(
+ const StyleResolverState& state) const {
+ return convertRotation(getRotation(*state.style()));
}
void CSSRotateInterpolationType::composite(

Powered by Google App Engine
This is Rietveld 408576698