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

Unified Diff: third_party/WebKit/Source/core/animation/AnimationStack.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 | « no previous file | third_party/WebKit/Source/core/animation/Interpolation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/animation/AnimationStack.cpp
diff --git a/third_party/WebKit/Source/core/animation/AnimationStack.cpp b/third_party/WebKit/Source/core/animation/AnimationStack.cpp
index 5ef9690004e887e114c990e2469da28895e181c6..8220f482897436095bd333bf58f92b6cec247458 100644
--- a/third_party/WebKit/Source/core/animation/AnimationStack.cpp
+++ b/third_party/WebKit/Source/core/animation/AnimationStack.cpp
@@ -32,7 +32,7 @@
#include "core/animation/AnimationStack.h"
#include "core/animation/CompositorAnimations.h"
-#include "core/animation/InvalidatableStyleInterpolation.h"
+#include "core/animation/InvalidatableInterpolation.h"
#include "core/animation/css/CSSAnimations.h"
#include "platform/RuntimeEnabledFeatures.h"
#include "wtf/BitArray.h"
@@ -50,8 +50,8 @@ void copyToActiveInterpolationsMap(const Vector<RefPtr<Interpolation>>& source,
ActiveInterpolations& activeInterpolations = entry.storedValue->value;
if (!entry.isNewEntry
&& RuntimeEnabledFeatures::stackedCSSPropertyAnimationsEnabled()
- && interpolation->isInvalidatableStyleInterpolation()
- && toInvalidatableStyleInterpolation(*interpolation).dependsOnUnderlyingValue()) {
+ && interpolation->isInvalidatableInterpolation()
+ && toInvalidatableInterpolation(*interpolation).dependsOnUnderlyingValue()) {
activeInterpolations.append(interpolation.get());
} else {
activeInterpolations.at(0) = interpolation.get();
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/animation/Interpolation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698