summaryrefslogtreecommitdiffstats
path: root/base/run_loop.h
diff options
context:
space:
mode:
authorsky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-17 00:10:29 +0000
committersky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-17 00:10:29 +0000
commit440e35732993c84fdb45e26f1eb8cb86945248b4 (patch)
tree60551a23078148d37e4ad3f6840cad8763ef5a22 /base/run_loop.h
parent053a1db400e2f07bd214320c9175b40d56d74eaf (diff)
downloadchromium_src-440e35732993c84fdb45e26f1eb8cb86945248b4.zip
chromium_src-440e35732993c84fdb45e26f1eb8cb86945248b4.tar.gz
chromium_src-440e35732993c84fdb45e26f1eb8cb86945248b4.tar.bz2
Nukes MessageLoop::Dispatcher (2)
There is no point in this typedef now that MessagePumpDispatcher is its own class. BUG=none TEST=none R=darin@chromium.org TBR=darin@chromium.org Review URL: https://codereview.chromium.org/135563004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245387 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/run_loop.h')
-rw-r--r--base/run_loop.h10
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.