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

Unified Diff: third_party/WebKit/Source/core/animation/CSSImageInterpolationType.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/CSSImageInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSImageInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSImageInterpolationType.cpp
index ada30fac18cb18889753c0359a7cc3d8664288ef..c3be22717af8079e66715efbfeddd3e21bba0f75 100644
--- a/third_party/WebKit/Source/core/animation/CSSImageInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSImageInterpolationType.cpp
@@ -235,14 +235,14 @@ void CSSImageInterpolationType::composite(
underlyingValueOwner.set(*this, value);
}
-void CSSImageInterpolationType::apply(
+void CSSImageInterpolationType::applyStandardPropertyValue(
const InterpolableValue& interpolableValue,
const NonInterpolableValue* nonInterpolableValue,
- InterpolationEnvironment& environment) const {
+ StyleResolverState& state) const {
ImagePropertyFunctions::setStyleImage(
- cssProperty(), *environment.state().style(),
+ cssProperty(), *state.style(),
resolveStyleImage(cssProperty(), interpolableValue, nonInterpolableValue,
- environment.state()));
+ state));
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698