| Index: ui/aura/window_tree_host_x11.h
|
| diff --git a/ui/aura/window_tree_host_x11.h b/ui/aura/window_tree_host_x11.h
|
| index 1c05bf04ab6e58f3e48b8ddee3a9d7e99192d611..664e7261f7523a4f00b5642f13da2abf37e6983b 100644
|
| --- a/ui/aura/window_tree_host_x11.h
|
| +++ b/ui/aura/window_tree_host_x11.h
|
| @@ -35,29 +35,29 @@ class AURA_EXPORT WindowTreeHostX11 : public WindowTreeHost,
|
|
|
| public:
|
| explicit WindowTreeHostX11(const gfx::Rect& bounds);
|
| - virtual ~WindowTreeHostX11();
|
| + ~WindowTreeHostX11() override;
|
|
|
| // ui::PlatformEventDispatcher:
|
| - virtual bool CanDispatchEvent(const ui::PlatformEvent& event) override;
|
| - virtual uint32_t DispatchEvent(const ui::PlatformEvent& event) override;
|
| + bool CanDispatchEvent(const ui::PlatformEvent& event) override;
|
| + uint32_t DispatchEvent(const ui::PlatformEvent& event) override;
|
|
|
| // WindowTreeHost:
|
| - virtual ui::EventSource* GetEventSource() override;
|
| - virtual gfx::AcceleratedWidget GetAcceleratedWidget() override;
|
| - virtual void Show() override;
|
| - virtual void Hide() override;
|
| - virtual gfx::Rect GetBounds() const override;
|
| - virtual void SetBounds(const gfx::Rect& bounds) override;
|
| - virtual gfx::Point GetLocationOnNativeScreen() const override;
|
| - virtual void SetCapture() override;
|
| - virtual void ReleaseCapture() override;
|
| - virtual void PostNativeEvent(const base::NativeEvent& event) override;
|
| - virtual void SetCursorNative(gfx::NativeCursor cursor_type) override;
|
| - virtual void MoveCursorToNative(const gfx::Point& location) override;
|
| - virtual void OnCursorVisibilityChangedNative(bool show) override;
|
| + ui::EventSource* GetEventSource() override;
|
| + gfx::AcceleratedWidget GetAcceleratedWidget() override;
|
| + void Show() override;
|
| + void Hide() override;
|
| + gfx::Rect GetBounds() const override;
|
| + void SetBounds(const gfx::Rect& bounds) override;
|
| + gfx::Point GetLocationOnNativeScreen() const override;
|
| + void SetCapture() override;
|
| + void ReleaseCapture() override;
|
| + void PostNativeEvent(const base::NativeEvent& event) override;
|
| + void SetCursorNative(gfx::NativeCursor cursor_type) override;
|
| + void MoveCursorToNative(const gfx::Point& location) override;
|
| + void OnCursorVisibilityChangedNative(bool show) override;
|
|
|
| // ui::EventSource overrides.
|
| - virtual ui::EventProcessor* GetEventProcessor() override;
|
| + ui::EventProcessor* GetEventProcessor() override;
|
|
|
| protected:
|
| // Called when X Configure Notify event is recevied.
|
|
|