| Index: base/message_pump_dispatcher.h
|
| diff --git a/base/message_pump_dispatcher.h b/base/message_pump_dispatcher.h
|
| index 685e92be7d8ee7c8708341363a2ef5c0736181fd..b8efd32cfe0d597a21f9b51169ede4d1289e5609 100644
|
| --- a/base/message_pump_dispatcher.h
|
| +++ b/base/message_pump_dispatcher.h
|
| @@ -11,12 +11,11 @@
|
|
|
| namespace base {
|
|
|
| -// Dispatcher is used during a nested invocation of Run to dispatch
|
| -// events when |MessageLoop::RunWithDispatcher| is invoked. If
|
| -// |MessageLoop::Run| is invoked, MessageLoop does not dispatch events
|
| -// (or invoke TranslateMessage), rather every message is passed to
|
| -// Dispatcher's Dispatch method for dispatch. It is up to the
|
| -// Dispatcher whether or not to dispatch the event.
|
| +// Dispatcher is used during a nested invocation of Run to dispatch events when
|
| +// |RunLoop(dispatcher).Run()| is used. If |RunLoop().Run()| is invoked,
|
| +// MessageLoop does not dispatch events (or invoke TranslateMessage), rather
|
| +// every message is passed to Dispatcher's Dispatch method for dispatch. It is
|
| +// up to the Dispatcher whether or not to dispatch the event.
|
| //
|
| // The nested loop is exited by either posting a quit, or returning false
|
| // from Dispatch.
|
|
|