OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 ASH_COMMON_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ | 5 #ifndef ASH_COMMON_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ |
6 #define ASH_COMMON_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ | 6 #define ASH_COMMON_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <memory> | 9 #include <memory> |
10 | 10 |
(...skipping 19 matching lines...) Expand all Loading... |
30 namespace gfx { | 30 namespace gfx { |
31 class Rect; | 31 class Rect; |
32 } | 32 } |
33 | 33 |
34 namespace views { | 34 namespace views { |
35 class Widget; | 35 class Widget; |
36 } | 36 } |
37 | 37 |
38 namespace ash { | 38 namespace ash { |
39 class PanelCalloutWidget; | 39 class PanelCalloutWidget; |
40 class Shelf; | |
41 class ShelfLayoutManager; | 40 class ShelfLayoutManager; |
42 class WmShelf; | 41 class WmShelf; |
43 | 42 |
44 namespace wm { | 43 namespace wm { |
45 class WmRootWindowController; | 44 class WmRootWindowController; |
46 } | 45 } |
47 | 46 |
48 // PanelLayoutManager is responsible for organizing panels within the | 47 // PanelLayoutManager is responsible for organizing panels within the |
49 // workspace. It is associated with a specific container window (i.e. | 48 // workspace. It is associated with a specific container window (i.e. |
50 // kShellWindowId_PanelContainer) and controls the layout of any windows | 49 // kShellWindowId_PanelContainer) and controls the layout of any windows |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 // are currently focused. | 198 // are currently focused. |
200 WmWindow* last_active_panel_; | 199 WmWindow* last_active_panel_; |
201 base::WeakPtrFactory<PanelLayoutManager> weak_factory_; | 200 base::WeakPtrFactory<PanelLayoutManager> weak_factory_; |
202 | 201 |
203 DISALLOW_COPY_AND_ASSIGN(PanelLayoutManager); | 202 DISALLOW_COPY_AND_ASSIGN(PanelLayoutManager); |
204 }; | 203 }; |
205 | 204 |
206 } // namespace ash | 205 } // namespace ash |
207 | 206 |
208 #endif // ASH_COMMON_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ | 207 #endif // ASH_COMMON_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ |
OLD | NEW |