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

Unified Diff: third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp

Issue 1412313005: Rename InvalidatableStyleInterpolation to InvalidatableInterpolation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@_renameCSSInterpolationTypes
Patch Set: Created 5 years, 2 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
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 4bbb21111c8aafdab4119820812efc4ddda1b7d1..d9ea1458f96b5909dbbb8a7c0d8d9414eb1ada8b 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
@@ -36,7 +36,7 @@
#include "core/animation/AnimationTimeline.h"
#include "core/animation/ElementAnimations.h"
#include "core/animation/InterpolationEnvironment.h"
-#include "core/animation/InvalidatableStyleInterpolation.h"
+#include "core/animation/InvalidatableInterpolation.h"
#include "core/animation/KeyframeEffect.h"
#include "core/animation/StyleInterpolation.h"
#include "core/animation/animatable/AnimatableValue.h"
@@ -967,9 +967,9 @@ void StyleResolver::applyAnimatedProperties(StyleResolverState& state, const Act
if (!CSSPropertyPriorityData<priority>::propertyHasPriority(property))
continue;
const Interpolation& interpolation = *interpolationsVectorEntry.value.first();
- if (interpolation.isInvalidatableStyleInterpolation()) {
+ if (interpolation.isInvalidatableInterpolation()) {
InterpolationEnvironment environment(state);
- InvalidatableStyleInterpolation::applyStack(interpolationsVectorEntry.value, environment);
+ InvalidatableInterpolation::applyStack(interpolationsVectorEntry.value, environment);
} else {
// TODO(alancutter): Remove this old code path once animations have completely migrated to InterpolationTypes.
toStyleInterpolation(interpolation).apply(state);
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698