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