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

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: 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
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;
};

Powered by Google App Engine
This is Rietveld 408576698