diff options
Diffstat (limited to 'ui/aura/root_window_host_linux.h')
-rw-r--r-- | ui/aura/root_window_host_linux.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ui/aura/root_window_host_linux.h b/ui/aura/root_window_host_linux.h index 8fc4fa9..0d05b7b 100644 --- a/ui/aura/root_window_host_linux.h +++ b/ui/aura/root_window_host_linux.h @@ -23,10 +23,10 @@ class RootWindowHostLinux : public RootWindowHost, explicit RootWindowHostLinux(const gfx::Rect& bounds); virtual ~RootWindowHostLinux(); - private: - // MessageLoop::Dispatcher Override. - virtual DispatchStatus Dispatch(XEvent* xev) OVERRIDE; + // Handles an event targeted at this host's window. + base::MessagePumpDispatcher::DispatchStatus Dispatch(XEvent* xev); + private: // RootWindowHost Overrides. virtual void SetRootWindow(RootWindow* root_window) OVERRIDE; virtual gfx::AcceleratedWidget GetAcceleratedWidget() OVERRIDE; @@ -44,7 +44,6 @@ class RootWindowHostLinux : public RootWindowHost, virtual void UnConfineCursor() OVERRIDE; virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE; virtual void PostNativeEvent(const base::NativeEvent& event) OVERRIDE; - virtual MessageLoop::Dispatcher* GetDispatcher() OVERRIDE; // MessageLoop::DestructionObserver Overrides. virtual void WillDestroyCurrentMessageLoop() OVERRIDE; |