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

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

Issue 177203009: Web Animations CSS: Dispatch all animation events in the animation frame. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Mark flaky virtual/threaded tests. Created 6 years, 10 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/animation/DocumentAnimations.cpp ('k') | Source/core/animation/DocumentTimeline.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/DocumentTimeline.h
diff --git a/Source/core/animation/DocumentTimeline.h b/Source/core/animation/DocumentTimeline.h
index 7ed3021ef4628c1425370aa8bc271aed62579d09..90cdd4de577ff82343bac953d2818b68f0a471d7 100644
--- a/Source/core/animation/DocumentTimeline.h
+++ b/Source/core/animation/DocumentTimeline.h
@@ -86,14 +86,6 @@ public:
void setOutdatedPlayer(Player*);
bool hasOutdatedPlayer() const { return m_hasOutdatedPlayer; }
- void addEventToDispatch(EventTarget* target, PassRefPtr<Event> event)
- {
- m_events.append(EventToDispatch(target, event));
- }
-
- void dispatchEvents();
- void dispatchEventsAsync();
-
void detachFromDocument();
protected:
@@ -102,27 +94,14 @@ protected:
private:
double m_zeroTime;
Document* m_document;
- Timer<DocumentTimeline> m_eventDistpachTimer;
// Players which will be updated on the next frame
// i.e. current, in effect, or had timing changed
HashSet<RefPtr<Player> > m_playersNeedingUpdate;
HashSet<Player*> m_players;
bool m_hasOutdatedPlayer;
- void eventDispatchTimerFired(Timer<DocumentTimeline>*);
void wake();
- struct EventToDispatch {
- EventToDispatch(EventTarget* target, PassRefPtr<Event> event)
- : target(target)
- , event(event)
- {
- }
- RefPtr<EventTarget> target;
- RefPtr<Event> event;
- };
- Vector<EventToDispatch> m_events;
-
static const double s_minimumDelay;
OwnPtr<PlatformTiming> m_timing;
« no previous file with comments | « Source/core/animation/DocumentAnimations.cpp ('k') | Source/core/animation/DocumentTimeline.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698