diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-16 17:25:08 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-16 17:25:08 +0000 |
commit | 265e2539ac30570f8334a05e1ad1d42d47246e70 (patch) | |
tree | eafda00c88826ae97de891ff76c9550ce7ee8007 /base/run_loop.h | |
parent | 94e8644ce9875337e137865777a3c752dbdfdd4c (diff) | |
download | chromium_src-265e2539ac30570f8334a05e1ad1d42d47246e70.zip chromium_src-265e2539ac30570f8334a05e1ad1d42d47246e70.tar.gz chromium_src-265e2539ac30570f8334a05e1ad1d42d47246e70.tar.bz2 |
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
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245226 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/run_loop.h')
-rw-r--r-- | base/run_loop.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/base/run_loop.h b/base/run_loop.h index 112bb79..5ad92c6 100644 --- a/base/run_loop.h +++ b/base/run_loop.h @@ -15,6 +15,10 @@ namespace base { class MessagePumpForUI; #endif +#if defined(USE_AURA) +class MessagePumpDispatcher; +#endif + #if defined(OS_IOS) class MessagePumpUIApplication; #endif @@ -28,12 +32,12 @@ class BASE_EXPORT RunLoop { public: RunLoop(); #if defined(USE_AURA) - explicit RunLoop(MessageLoop::Dispatcher* dispatcher); + explicit RunLoop(MessagePumpDispatcher* dispatcher); #endif ~RunLoop(); #if defined(USE_AURA) - void set_dispatcher(MessageLoop::Dispatcher* dispatcher) { + void set_dispatcher(MessagePumpDispatcher* dispatcher) { dispatcher_ = dispatcher; } #endif @@ -96,7 +100,7 @@ class BASE_EXPORT RunLoop { RunLoop* previous_run_loop_; #if defined(USE_AURA) - MessageLoop::Dispatcher* dispatcher_; + MessagePumpDispatcher* dispatcher_; #endif // Used to count how many nested Run() invocations are on the stack. |