diff options
Diffstat (limited to 'views/window/client_view.h')
-rw-r--r-- | views/window/client_view.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/views/window/client_view.h b/views/window/client_view.h index 405ec4e..b50eafa 100644 --- a/views/window/client_view.h +++ b/views/window/client_view.h @@ -55,14 +55,15 @@ class ClientView : public View { virtual int NonClientHitTest(const gfx::Point& point); // Overridden from View: - virtual gfx::Size GetPreferredSize(); - virtual void Layout(); + virtual gfx::Size GetPreferredSize() OVERRIDE; + virtual void Layout() OVERRIDE; protected: // Overridden from View: - virtual void ViewHierarchyChanged(bool is_add, View* parent, View* child); - virtual void OnBoundsChanged(); - virtual AccessibilityTypes::Role GetAccessibleRole(); + virtual void ViewHierarchyChanged( + bool is_add, View* parent, View* child) OVERRIDE; + virtual void OnBoundsChanged(const gfx::Rect& previous_bounds) OVERRIDE; + virtual AccessibilityTypes::Role GetAccessibleRole() OVERRIDE; // Accessors for private data members. Window* window() const { return window_; } |