Home | History | Annotate | Download | only in base

Lines Matching defs:Dispatcher

45   // Dispatcher is used during a nested invocation of Run to dispatch events.
46 // If Run is invoked with a non-NULL Dispatcher, MessageLoop does not
48 // passed to Dispatcher's Dispatch method for dispatch. It is up to the
49 // Dispatcher to dispatch, or not, the event.
53 class Dispatcher {
55 virtual ~Dispatcher() {}
76 // Like MessagePump::Run, but MSG objects are routed through dispatcher.
77 void RunWithDispatcher(Delegate* delegate, Dispatcher* dispatcher);
86 Dispatcher* dispatcher;