Index: views/window/client_view.h |
diff --git a/views/window/client_view.h b/views/window/client_view.h |
index 57543d1534e73130b59ed287c3cd060448cab116..f45e508f0d5264c27eefd47df3aecfeaf9975e00 100644 |
--- a/views/window/client_view.h |
+++ b/views/window/client_view.h |
@@ -46,8 +46,7 @@ class VIEWS_EXPORT ClientView : public View { |
// dialog, etc. |
virtual bool CanClose(); |
- // Notification that the widget is closing. The default implementation |
- // forwards the notification to the delegate. |
+ // Notification that the widget is closing. |
virtual void WidgetClosing(); |
// Tests to see if the specified point (in view coordinates) is within the |
@@ -68,10 +67,11 @@ class VIEWS_EXPORT ClientView : public View { |
protected: |
// Overridden from View: |
- virtual void ViewHierarchyChanged( |
- bool is_add, View* parent, View* child) OVERRIDE; |
- virtual void OnBoundsChanged(const gfx::Rect& previous_bounds) OVERRIDE; |
virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE; |
+ virtual void OnBoundsChanged(const gfx::Rect& previous_bounds) OVERRIDE; |
+ virtual void ViewHierarchyChanged(bool is_add, |
+ View* parent, |
+ View* child) OVERRIDE; |
// Accessors for private data members. |
View* contents_view() const { return contents_view_; } |