Home | History | Annotate | Download | only in websockets

Lines Matching defs:EventQueue

66 WebSocket::EventQueue::EventQueue(EventTarget* target)
69 , m_resumeTimer(this, &EventQueue::resumeTimerFired) { }
71 WebSocket::EventQueue::~EventQueue() { stop(); }
73 void WebSocket::EventQueue::dispatch(PassRefPtrWillBeRawPtr<Event> event)
91 bool WebSocket::EventQueue::isEmpty() const
96 void WebSocket::EventQueue::suspend()
105 void WebSocket::EventQueue::resume()
113 void WebSocket::EventQueue::stop()
123 void WebSocket::EventQueue::dispatchQueuedEvents()
128 RefPtrWillBeRawPtr<EventQueue> protect(this);
147 void WebSocket::EventQueue::resumeTimerFired(Timer<EventQueue>*)
154 void WebSocket::EventQueue::trace(Visitor* visitor)
236 , m_eventQueue(EventQueue::create(this))