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

Unified Diff: Source/core/platform/animation/AnimationList.h

Issue 14391005: Rename Animation -> PrimitiveAnimation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update to long paths Created 7 years, 8 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 | « Source/core/platform/animation/Animation.cpp ('k') | Source/core/platform/animation/AnimationList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
};
« no previous file with comments | « Source/core/platform/animation/Animation.cpp ('k') | Source/core/platform/animation/AnimationList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698