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

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

Issue 1113173003: Web Animations: Update naming to reflect spec changes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: No, really. Created 5 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
Index: Source/core/animation/CompositorPendingAnimations.h
diff --git a/Source/core/animation/CompositorPendingAnimations.h b/Source/core/animation/CompositorPendingAnimations.h
index 2f721f7cc438050dc7ccd79027122342b5bee0c9..03e81c3cd0c8d8e99b4381fd5b846cc329412d80 100644
--- a/Source/core/animation/CompositorPendingAnimations.h
+++ b/Source/core/animation/CompositorPendingAnimations.h
@@ -32,7 +32,7 @@
#define CompositorPendingAnimations_h
#include "core/CoreExport.h"
-#include "core/animation/AnimationPlayer.h"
+#include "core/animation/Animation.h"
#include "platform/Timer.h"
#include "platform/heap/Handle.h"
#include "wtf/Vector.h"
@@ -53,7 +53,7 @@ public:
, m_compositorGroup(1)
{ }
- void add(AnimationPlayer*);
+ void add(Animation*);
// Returns whether we are waiting for an animation to start and should
// service again on the next frame.
bool update(bool startOnCompositor = true);
@@ -64,8 +64,8 @@ public:
private:
void timerFired(Timer<CompositorPendingAnimations>*) { update(false); }
- WillBeHeapVector<RefPtrWillBeMember<AnimationPlayer>> m_pending;
- WillBeHeapVector<RefPtrWillBeMember<AnimationPlayer>> m_waitingForCompositorAnimationStart;
+ WillBeHeapVector<RefPtrWillBeMember<Animation>> m_pending;
+ WillBeHeapVector<RefPtrWillBeMember<Animation>> m_waitingForCompositorAnimationStart;
Timer<CompositorPendingAnimations> m_timer;
int m_compositorGroup;
};
« no previous file with comments | « Source/core/animation/CompositorAnimationsTest.cpp ('k') | Source/core/animation/CompositorPendingAnimations.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698