diff options
Diffstat (limited to 'views/window/native_frame_view.h')
-rw-r--r-- | views/window/native_frame_view.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/views/window/native_frame_view.h b/views/window/native_frame_view.h index 07c125c..ac68ddf 100644 --- a/views/window/native_frame_view.h +++ b/views/window/native_frame_view.h @@ -18,17 +18,18 @@ class NativeFrameView : public NonClientFrameView { virtual ~NativeFrameView(); // NonClientFrameView overrides: - virtual gfx::Rect GetBoundsForClientView() const; + virtual gfx::Rect GetBoundsForClientView() const OVERRIDE; virtual gfx::Rect GetWindowBoundsForClientBounds( - const gfx::Rect& client_bounds) const; - virtual int NonClientHitTest(const gfx::Point& point); + const gfx::Rect& client_bounds) const OVERRIDE; + virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; virtual void GetWindowMask(const gfx::Size& size, - gfx::Path* window_mask); - virtual void EnableClose(bool enable); - virtual void ResetWindowControls(); + gfx::Path* window_mask) OVERRIDE; + virtual void EnableClose(bool enable) OVERRIDE; + virtual void ResetWindowControls() OVERRIDE; + virtual void UpdateWindowIcon() OVERRIDE; // View overrides: - virtual gfx::Size GetPreferredSize(); + virtual gfx::Size GetPreferredSize() OVERRIDE; private: // Our containing frame. |