| Index: Source/core/dom/ScriptedAnimationController.h
|
| diff --git a/Source/core/dom/ScriptedAnimationController.h b/Source/core/dom/ScriptedAnimationController.h
|
| index 1d32c5a9270d34843520621e3a2fa2c3062fa337..7c83094406d09625486bb0e4c71247f141482873 100644
|
| --- a/Source/core/dom/ScriptedAnimationController.h
|
| +++ b/Source/core/dom/ScriptedAnimationController.h
|
| @@ -54,7 +54,8 @@ public:
|
| void cancelCallback(CallbackId);
|
| void serviceScriptedAnimations(double monotonicTimeNow);
|
|
|
| - void scheduleEvent(PassRefPtr<Event>);
|
| + void enqueueEvent(PassRefPtr<Event>);
|
| + void enqueuePerFrameEvent(PassRefPtr<Event>);
|
|
|
| void suspend();
|
| void resume();
|
| @@ -74,7 +75,7 @@ private:
|
| CallbackId m_nextCallbackId;
|
| int m_suspendCount;
|
| Vector<RefPtr<Event> > m_eventQueue;
|
| - ListHashSet<std::pair<const EventTarget*, const StringImpl*> > m_scheduledEventTargets;
|
| + ListHashSet<std::pair<const EventTarget*, const StringImpl*> > m_perFrameEvents;
|
| };
|
|
|
| }
|
|
|