| Index: Source/core/platform/animation/AnimationList.h
|
| diff --git a/Source/core/platform/animation/AnimationList.h b/Source/core/platform/animation/AnimationList.h
|
| index bf8ff9f1e826359fad092d5fac6ffccf91fd289b..78b25b3c0bf45214363d51694001e05a10fc838e 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 "Animation.h"
|
| +#include "PrimitiveAnimation.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<PrimitiveAnimation> 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(); }
|
| + PrimitiveAnimation* animation(size_t i) { return m_animations[i].get(); }
|
| + const PrimitiveAnimation* animation(size_t i) const { return m_animations[i].get(); }
|
|
|
| private:
|
| AnimationList& operator=(const AnimationList&);
|
|
|
| - Vector<RefPtr<Animation> > m_animations;
|
| + Vector<RefPtr<PrimitiveAnimation> > m_animations;
|
| };
|
|
|
|
|
|
|