diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-16 17:42:41 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-16 17:42:41 +0000 |
commit | d57905e9d64d545c597ba17aa0bea785e3e36af7 (patch) | |
tree | 168a0790ef620338bc599e0dcc3c8a7e1bd28e49 /base/run_loop.h | |
parent | 93f3ad262b3b33d806e7e4078b0291709e1cd193 (diff) | |
download | chromium_src-d57905e9d64d545c597ba17aa0bea785e3e36af7.zip chromium_src-d57905e9d64d545c597ba17aa0bea785e3e36af7.tar.gz chromium_src-d57905e9d64d545c597ba17aa0bea785e3e36af7.tar.bz2 |
Revert 245226 "Nukes MessageLoop::Dispatcher"
> Nukes MessageLoop::Dispatcher
>
> There is no point in this typedef now that MessagePumpDispatcher is
> its own class.
>
> BUG=none
> TEST=none
> R=ben@chromium.org, darin@chromium.org
>
> Review URL: https://codereview.chromium.org/139593002
TBR=sky@chromium.org
Review URL: https://codereview.chromium.org/138433008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245239 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/run_loop.h')
-rw-r--r-- | base/run_loop.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/base/run_loop.h b/base/run_loop.h index 5ad92c6..112bb79 100644 --- a/base/run_loop.h +++ b/base/run_loop.h @@ -15,10 +15,6 @@ namespace base { class MessagePumpForUI; #endif -#if defined(USE_AURA) -class MessagePumpDispatcher; -#endif - #if defined(OS_IOS) class MessagePumpUIApplication; #endif @@ -32,12 +28,12 @@ class BASE_EXPORT RunLoop { public: RunLoop(); #if defined(USE_AURA) - explicit RunLoop(MessagePumpDispatcher* dispatcher); + explicit RunLoop(MessageLoop::Dispatcher* dispatcher); #endif ~RunLoop(); #if defined(USE_AURA) - void set_dispatcher(MessagePumpDispatcher* dispatcher) { + void set_dispatcher(MessageLoop::Dispatcher* dispatcher) { dispatcher_ = dispatcher; } #endif @@ -100,7 +96,7 @@ class BASE_EXPORT RunLoop { RunLoop* previous_run_loop_; #if defined(USE_AURA) - MessagePumpDispatcher* dispatcher_; + MessageLoop::Dispatcher* dispatcher_; #endif // Used to count how many nested Run() invocations are on the stack. |