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

Unified Diff: Source/core/animation/Animation.h

Issue 293893003: Web Animations: Rename TimedItem to AnimationSource (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update expectations. Created 6 years, 7 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 | « LayoutTests/webexposed/web-animations-api-expected.txt ('k') | Source/core/animation/Animation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/Animation.h
diff --git a/Source/core/animation/Animation.h b/Source/core/animation/Animation.h
index 2297061dc0ff72a24be2b6aaea5aa83d49e85932..ed0299d1b174ad424bdd462783488a70a7cbb783 100644
--- a/Source/core/animation/Animation.h
+++ b/Source/core/animation/Animation.h
@@ -32,8 +32,8 @@
#define Animation_h
#include "core/animation/AnimationEffect.h"
+#include "core/animation/AnimationSource.h"
#include "core/animation/EffectInput.h"
-#include "core/animation/TimedItem.h"
#include "core/animation/TimingInput.h"
#include "platform/heap/Handle.h"
#include "wtf/RefPtr.h"
@@ -45,7 +45,7 @@ class Element;
class ExceptionState;
class SampledEffect;
-class Animation FINAL : public TimedItem {
+class Animation FINAL : public AnimationSource {
public:
enum Priority { DefaultPriority, TransitionPriority };
@@ -106,7 +106,7 @@ private:
friend class AnimationAnimationV8Test;
};
-DEFINE_TYPE_CASTS(Animation, TimedItem, timedItem, timedItem->isAnimation(), timedItem.isAnimation());
+DEFINE_TYPE_CASTS(Animation, AnimationSource, animationSource, animationSource->isAnimation(), animationSource.isAnimation());
} // namespace WebCore
« no previous file with comments | « LayoutTests/webexposed/web-animations-api-expected.txt ('k') | Source/core/animation/Animation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698