Index: third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp |
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp b/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp |
index 2f25339c78524a80723975f62c1d2ab07f20ecc1..77476654eb6539630a8f07256cb0ae05ba2ed03b 100644 |
--- a/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp |
+++ b/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp |
@@ -35,7 +35,6 @@ |
#include "core/MediaTypeNames.h" |
#include "core/StylePropertyShorthand.h" |
#include "core/animation/AnimationTimeline.h" |
-#include "core/animation/CSSInterpolationTypesMap.h" |
#include "core/animation/ElementAnimations.h" |
#include "core/animation/InterpolationEnvironment.h" |
#include "core/animation/InvalidatableInterpolation.h" |
@@ -1231,8 +1230,7 @@ |
continue; |
const Interpolation& interpolation = *entry.value.front(); |
if (interpolation.isInvalidatableInterpolation()) { |
- InterpolationEnvironment environment( |
- CSSInterpolationTypesMap(state.document().propertyRegistry()), state); |
+ InterpolationEnvironment environment(state); |
InvalidatableInterpolation::applyStack(entry.value, environment); |
} else { |
// TODO(alancutter): Remove this old code path once animations have |