Index: Source/core/platform/animation/AnimationList.h |
diff --git a/Source/core/platform/animation/AnimationList.h b/Source/core/platform/animation/AnimationList.h |
index 4562dd75eb83e46e942bf8ff7af6d5eeba20dceb..f68406a09fbe2114e5848678d151ad3f8551db97 100644 |
--- a/Source/core/platform/animation/AnimationList.h |
+++ b/Source/core/platform/animation/AnimationList.h |
@@ -25,7 +25,7 @@ |
#ifndef AnimationList_h |
#define AnimationList_h |
-#include "core/platform/animation/Animation.h" |
+#include "core/platform/animation/CSSAnimationData.h" |
#include <wtf/RefPtr.h> |
#include <wtf/Vector.h> |
@@ -49,15 +49,15 @@ public: |
void resize(size_t n) { m_animations.resize(n); } |
void remove(size_t i) { m_animations.remove(i); } |
- void append(PassRefPtr<Animation> anim) { m_animations.append(anim); } |
+ void append(PassRefPtr<CSSAnimationData> anim) { m_animations.append(anim); } |
- Animation* animation(size_t i) { return m_animations[i].get(); } |
- const Animation* animation(size_t i) const { return m_animations[i].get(); } |
+ CSSAnimationData* animation(size_t i) { return m_animations[i].get(); } |
+ const CSSAnimationData* animation(size_t i) const { return m_animations[i].get(); } |
private: |
AnimationList& operator=(const AnimationList&); |
- Vector<RefPtr<Animation> > m_animations; |
+ Vector<RefPtr<CSSAnimationData> > m_animations; |
}; |