| Index: ui/aura/window_tree_host_win.h
|
| diff --git a/ui/aura/window_tree_host_win.h b/ui/aura/window_tree_host_win.h
|
| index f2c5e85baf808bad2dd8e1afe52a3b0752ee40e6..bfbdc07eacac544c0802b820312f99029fa5196c 100644
|
| --- a/ui/aura/window_tree_host_win.h
|
| +++ b/ui/aura/window_tree_host_win.h
|
| @@ -24,38 +24,38 @@ class AURA_EXPORT WindowTreeHostWin
|
| virtual ~WindowTreeHostWin();
|
|
|
| // 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 SetCursorNative(gfx::NativeCursor cursor) OVERRIDE;
|
| - virtual void MoveCursorToNative(const gfx::Point& location) OVERRIDE;
|
| - virtual void OnCursorVisibilityChangedNative(bool show) OVERRIDE;
|
| - virtual void PostNativeEvent(const base::NativeEvent& native_event) OVERRIDE;
|
| + 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 SetCursorNative(gfx::NativeCursor cursor) override;
|
| + virtual void MoveCursorToNative(const gfx::Point& location) override;
|
| + virtual void OnCursorVisibilityChangedNative(bool show) override;
|
| + virtual void PostNativeEvent(const base::NativeEvent& native_event) override;
|
|
|
| // ui::EventSource:
|
| - virtual ui::EventProcessor* GetEventProcessor() OVERRIDE;
|
| + virtual ui::EventProcessor* GetEventProcessor() override;
|
|
|
| protected:
|
| gfx::AcceleratedWidget hwnd() const { return widget_; }
|
|
|
| private:
|
| // ui::PlatformWindowDelegate:
|
| - virtual void OnBoundsChanged(const gfx::Rect& new_bounds) OVERRIDE;
|
| - virtual void OnDamageRect(const gfx::Rect& damaged_region) OVERRIDE;
|
| - virtual void DispatchEvent(ui::Event* event) OVERRIDE;
|
| - virtual void OnCloseRequest() OVERRIDE;
|
| - virtual void OnClosed() OVERRIDE;
|
| - virtual void OnWindowStateChanged(ui::PlatformWindowState new_state) OVERRIDE;
|
| - virtual void OnLostCapture() OVERRIDE;
|
| + virtual void OnBoundsChanged(const gfx::Rect& new_bounds) override;
|
| + virtual void OnDamageRect(const gfx::Rect& damaged_region) override;
|
| + virtual void DispatchEvent(ui::Event* event) override;
|
| + virtual void OnCloseRequest() override;
|
| + virtual void OnClosed() override;
|
| + virtual void OnWindowStateChanged(ui::PlatformWindowState new_state) override;
|
| + virtual void OnLostCapture() override;
|
| virtual void OnAcceleratedWidgetAvailable(
|
| - gfx::AcceleratedWidget widget) OVERRIDE;
|
| - virtual void OnActivationChanged(bool active) OVERRIDE;
|
| + gfx::AcceleratedWidget widget) override;
|
| + virtual void OnActivationChanged(bool active) override;
|
|
|
| bool has_capture_;
|
| gfx::Rect bounds_;
|
|
|