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 be12c3bee157f07c4b386dead89d440319fd2ecb..ec89584e9031cffece5f84d62d63a42127f655da 100644 |
--- a/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp |
+++ b/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp |
@@ -40,7 +40,7 @@ |
#include "core/animation/InterpolationEnvironment.h" |
#include "core/animation/InvalidatableInterpolation.h" |
#include "core/animation/KeyframeEffect.h" |
-#include "core/animation/LegacyStyleInterpolation.h" |
+#include "core/animation/TransitionInterpolation.h" |
#include "core/animation/animatable/AnimatableValue.h" |
#include "core/animation/css/CSSAnimatableValueFactory.h" |
#include "core/animation/css/CSSAnimations.h" |
@@ -1182,9 +1182,7 @@ void StyleResolver::applyAnimatedProperties( |
InterpolationEnvironment environment(map, state); |
InvalidatableInterpolation::applyStack(entry.value, environment); |
} else { |
- // TODO(alancutter): Remove this old code path once animations have |
- // completely migrated to InterpolationTypes. |
- toLegacyStyleInterpolation(interpolation).apply(state); |
+ toTransitionInterpolation(interpolation).apply(state); |
} |
} |
} |