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

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

Issue 2811253003: Make InterpolationEnvironment virutal (Closed)
Patch Set: protected Created 3 years, 7 months 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/TransitionInterpolation.cpp
diff --git a/third_party/WebKit/Source/core/animation/TransitionInterpolation.cpp b/third_party/WebKit/Source/core/animation/TransitionInterpolation.cpp
index 1b5f803d4eadac13e70e68829d5523657d33e49c..b2f0a6dc391fd8a58f36784186c211751080dcf7 100644
--- a/third_party/WebKit/Source/core/animation/TransitionInterpolation.cpp
+++ b/third_party/WebKit/Source/core/animation/TransitionInterpolation.cpp
@@ -47,7 +47,7 @@ NonInterpolableValue* TransitionInterpolation::CurrentNonInterpolableValue()
void TransitionInterpolation::Apply(StyleResolverState& state) const {
CSSInterpolationTypesMap map(state.GetDocument().GetPropertyRegistry());
- InterpolationEnvironment environment(map, state);
+ CSSInterpolationEnvironment environment(map, state);
type_.Apply(CurrentInterpolableValue(), CurrentNonInterpolableValue(),
environment);
}

Powered by Google App Engine
This is Rietveld 408576698