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

Unified Diff: third_party/WebKit/Source/core/animation/CSSOffsetRotateInterpolationType.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/CSSOffsetRotateInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSOffsetRotateInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSOffsetRotateInterpolationType.cpp
index 78aa125f4bc3cb55f4dc0eb0efd8ce07c9a36cc1..3ae08776216ac8baadb525f323c8a9e928c98b78 100644
--- a/third_party/WebKit/Source/core/animation/CSSOffsetRotateInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSOffsetRotateInterpolationType.cpp
@@ -141,9 +141,9 @@ PairwiseInterpolationValue CSSOffsetRotateInterpolationType::maybeMergeSingles(
}
InterpolationValue
-CSSOffsetRotateInterpolationType::maybeConvertUnderlyingValue(
- const InterpolationEnvironment& environment) const {
- return convertOffsetRotate(environment.state().style()->offsetRotation());
+CSSOffsetRotateInterpolationType::maybeConvertStandardPropertyUnderlyingValue(
+ const StyleResolverState& state) const {
+ return convertOffsetRotate(state.style()->offsetRotation());
}
void CSSOffsetRotateInterpolationType::composite(

Powered by Google App Engine
This is Rietveld 408576698