| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_VIEWS_LAYOUT_LAYOUT_MANAGER_H_ | 5 #ifndef UI_VIEWS_LAYOUT_LAYOUT_MANAGER_H_ |
| 6 #define UI_VIEWS_LAYOUT_LAYOUT_MANAGER_H_ | 6 #define UI_VIEWS_LAYOUT_LAYOUT_MANAGER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "views/views_export.h" | 9 #include "ui/views/views_export.h" |
| 10 | 10 |
| 11 namespace gfx { | 11 namespace gfx { |
| 12 class Size; | 12 class Size; |
| 13 } | 13 } |
| 14 | 14 |
| 15 namespace views { | 15 namespace views { |
| 16 | 16 |
| 17 class View; | 17 class View; |
| 18 | 18 |
| 19 ///////////////////////////////////////////////////////////////////////////// | 19 ///////////////////////////////////////////////////////////////////////////// |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 // Notification that a view has been added. | 52 // Notification that a view has been added. |
| 53 virtual void ViewAdded(View* host, View* view); | 53 virtual void ViewAdded(View* host, View* view); |
| 54 | 54 |
| 55 // Notification that a view has been removed. | 55 // Notification that a view has been removed. |
| 56 virtual void ViewRemoved(View* host, View* view); | 56 virtual void ViewRemoved(View* host, View* view); |
| 57 }; | 57 }; |
| 58 | 58 |
| 59 } // namespace views | 59 } // namespace views |
| 60 | 60 |
| 61 #endif // UI_VIEWS_LAYOUT_LAYOUT_MANAGER_H_ | 61 #endif // UI_VIEWS_LAYOUT_LAYOUT_MANAGER_H_ |
| OLD | NEW |