| Index: ui/aura/dispatcher_win.cc
|
| diff --git a/ui/aura/dispatcher_win.cc b/ui/aura/dispatcher_win.cc
|
| index 7160dc7771d3444dad97b1fee9ca5b817feb3984..63b42a256c01953fe82ee19c7769cd73e895a6d4 100644
|
| --- a/ui/aura/dispatcher_win.cc
|
| +++ b/ui/aura/dispatcher_win.cc
|
| @@ -4,16 +4,16 @@
|
|
|
| #include "base/basictypes.h"
|
| #include "base/compiler_specific.h"
|
| -#include "base/message_loop/message_loop.h"
|
| +#include "base/message_loop/message_pump_dispatcher.h"
|
|
|
| namespace aura {
|
|
|
| -class DispatcherWin : public base::MessageLoop::Dispatcher {
|
| +class DispatcherWin : public base::MessagePumpDispatcher {
|
| public:
|
| DispatcherWin() {}
|
| virtual ~DispatcherWin() {}
|
|
|
| - // Overridden from MessageLoop::Dispatcher:
|
| + // Overridden from MessagePumpDispatcher:
|
| virtual bool Dispatch(const base::NativeEvent& event) OVERRIDE;
|
|
|
| private:
|
| @@ -26,7 +26,7 @@ bool DispatcherWin::Dispatch(const base::NativeEvent& msg) {
|
| return true;
|
| }
|
|
|
| -base::MessageLoop::Dispatcher* CreateDispatcher() {
|
| +base::MessagePumpDispatcher* CreateDispatcher() {
|
| return new DispatcherWin;
|
| }
|
|
|
|
|