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

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

Issue 2522823002: Blink Animation: Rename AnimationStack to EffectStack. (Closed)
Patch Set: Rename getter and data (and locals) 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
« no previous file with comments | « third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp ('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/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..ae818a9ff5cad2d1d8c0851628b4030732c9737d 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,8 +229,8 @@ static bool isSVGAttributeHandle(const PropertyHandle& propertyHandle) {
void SVGElement::applyActiveWebAnimations() {
ActiveInterpolationsMap activeInterpolationsMap =
- AnimationStack::activeInterpolations(
- &elementAnimations()->animationStack(), nullptr, nullptr,
+ EffectStack::activeInterpolations(
+ &elementAnimations()->effectStack(), nullptr, nullptr,
KeyframeEffectReadOnly::DefaultPriority, isSVGAttributeHandle);
for (auto& entry : activeInterpolationsMap) {
const QualifiedName& attribute = entry.key.svgAttribute();
« no previous file with comments | « third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698