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

Unified Diff: third_party/WebKit/Source/core/animation/css/CSSAnimations.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/css/CSSAnimations.cpp
diff --git a/third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp b/third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp
index 44a2d70a02040e8cf5276eb0bbffcad8e96a7275..75d8f29d3b6dbb1e5457ebc18654887571c8f331 100644
--- a/third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp
+++ b/third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp
@@ -689,8 +689,8 @@ void CSSAnimations::CalculateTransitionUpdateForProperty(
CSSAnimatableValueFactory::Create(property, state.old_style);
CSSInterpolationTypesMap map(registry);
- InterpolationEnvironment old_environment(map, state.old_style);
- InterpolationEnvironment new_environment(map, state.style);
+ CSSInterpolationEnvironment old_environment(map, state.old_style);
+ CSSInterpolationEnvironment new_environment(map, state.style);
InterpolationValue start = nullptr;
InterpolationValue end = nullptr;
const InterpolationType* transition_type = nullptr;

Powered by Google App Engine
This is Rietveld 408576698