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

Unified Diff: third_party/WebKit/Source/core/svg/SVGElement.cpp

Issue 2522823002: Blink Animation: Rename AnimationStack to EffectStack. (Closed)
Patch Set: Created 4 years, 1 month 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/svg/SVGElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGElement.cpp b/third_party/WebKit/Source/core/svg/SVGElement.cpp
index 8a440b8d22faf05b063f0b0d7fa342a015b30cbe..d3815c99a6106d5fbc9c812a185644f9f91edd69 100644
--- a/third_party/WebKit/Source/core/svg/SVGElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGElement.cpp
@@ -28,8 +28,8 @@
#include "core/HTMLNames.h"
#include "core/SVGNames.h"
#include "core/XMLNames.h"
-#include "core/animation/AnimationStack.h"
#include "core/animation/DocumentAnimations.h"
+#include "core/animation/EffectStack.h"
#include "core/animation/ElementAnimations.h"
#include "core/animation/InterpolationEnvironment.h"
#include "core/animation/InvalidatableInterpolation.h"
@@ -229,7 +229,7 @@ static bool isSVGAttributeHandle(const PropertyHandle& propertyHandle) {
void SVGElement::applyActiveWebAnimations() {
ActiveInterpolationsMap activeInterpolationsMap =
- AnimationStack::activeInterpolations(
+ EffectStack::activeInterpolations(
&elementAnimations()->animationStack(), nullptr, nullptr,
KeyframeEffectReadOnly::DefaultPriority, isSVGAttributeHandle);
for (auto& entry : activeInterpolationsMap) {

Powered by Google App Engine
This is Rietveld 408576698