| Index: ui/ozone/platform/caca/caca_window.h
|
| diff --git a/ui/ozone/platform/caca/caca_window.h b/ui/ozone/platform/caca/caca_window.h
|
| index 444f3d5d044db410f9f93bb0face393ee8cf5561..5310a933b5532230589a4c7bf925889ca167a7be 100644
|
| --- a/ui/ozone/platform/caca/caca_window.h
|
| +++ b/ui/ozone/platform/caca/caca_window.h
|
| @@ -47,23 +47,23 @@ class CacaWindow : public PlatformWindow, public PlatformEventDispatcher {
|
| caca_display_t* display() const { return display_.get(); }
|
|
|
| // PlatformWindow:
|
| - virtual gfx::Rect GetBounds() OVERRIDE;
|
| - virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE;
|
| - virtual void Show() OVERRIDE;
|
| - virtual void Hide() OVERRIDE;
|
| - virtual void Close() OVERRIDE;
|
| - virtual void SetCapture() OVERRIDE;
|
| - virtual void ReleaseCapture() OVERRIDE;
|
| - virtual void ToggleFullscreen() OVERRIDE;
|
| - virtual void Maximize() OVERRIDE;
|
| - virtual void Minimize() OVERRIDE;
|
| - virtual void Restore() OVERRIDE;
|
| - virtual void SetCursor(PlatformCursor cursor) OVERRIDE;
|
| - virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
|
| + virtual gfx::Rect GetBounds() override;
|
| + virtual void SetBounds(const gfx::Rect& bounds) override;
|
| + virtual void Show() override;
|
| + virtual void Hide() override;
|
| + virtual void Close() override;
|
| + virtual void SetCapture() override;
|
| + virtual void ReleaseCapture() override;
|
| + virtual void ToggleFullscreen() override;
|
| + virtual void Maximize() override;
|
| + virtual void Minimize() override;
|
| + virtual void Restore() override;
|
| + virtual void SetCursor(PlatformCursor cursor) override;
|
| + virtual void MoveCursorTo(const gfx::Point& location) override;
|
|
|
| // PlatformEventDispatcher:
|
| - virtual bool CanDispatchEvent(const PlatformEvent& event) OVERRIDE;
|
| - virtual uint32_t DispatchEvent(const PlatformEvent& event) OVERRIDE;
|
| + virtual bool CanDispatchEvent(const PlatformEvent& event) override;
|
| + virtual uint32_t DispatchEvent(const PlatformEvent& event) override;
|
|
|
| private:
|
| // Event polling.
|
|
|