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

Unified Diff: third_party/WebKit/Source/core/animation/CSSValueInterpolationType.cpp

Issue 2578043002: Rename apply() 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/CSSValueInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSValueInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSValueInterpolationType.cpp
index a1a00ba50676086e0fd30997c58be0e4d9c49149..9f15de81abc38c2bfc2fd385c4940cda650154fb 100644
--- a/third_party/WebKit/Source/core/animation/CSSValueInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSValueInterpolationType.cpp
@@ -49,12 +49,12 @@ InterpolationValue CSSValueInterpolationType::maybeConvertSingle(
toCSSPropertySpecificKeyframe(keyframe).value()));
}
-void CSSValueInterpolationType::apply(
+void CSSValueInterpolationType::applyStandardPropertyValue(
const InterpolableValue&,
const NonInterpolableValue* nonInterpolableValue,
- InterpolationEnvironment& environment) const {
+ StyleResolverState& state) const {
StyleBuilder::applyProperty(
- cssProperty(), environment.state(),
+ cssProperty(), state,
toCSSValueNonInterpolableValue(nonInterpolableValue)->cssValue());
}

Powered by Google App Engine
This is Rietveld 408576698