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_WM_COMMON_PANELS_PANEL_LAYOUT_MANAGER_H_ | 5 #ifndef ASH_COMMON_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ |
6 #define ASH_WM_COMMON_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 |
11 #include "ash/ash_export.h" | 11 #include "ash/ash_export.h" |
12 #include "ash/wm/common/shelf/wm_shelf_observer.h" | 12 #include "ash/common/wm/shelf/wm_shelf_observer.h" |
13 #include "ash/wm/common/window_state_observer.h" | 13 #include "ash/common/wm/window_state_observer.h" |
14 #include "ash/wm/common/wm_activation_observer.h" | 14 #include "ash/common/wm/wm_activation_observer.h" |
15 #include "ash/wm/common/wm_display_observer.h" | 15 #include "ash/common/wm/wm_display_observer.h" |
16 #include "ash/wm/common/wm_layout_manager.h" | 16 #include "ash/common/wm/wm_layout_manager.h" |
17 #include "ash/wm/common/wm_overview_mode_observer.h" | 17 #include "ash/common/wm/wm_overview_mode_observer.h" |
18 #include "ash/wm/common/wm_root_window_controller_observer.h" | 18 #include "ash/common/wm/wm_root_window_controller_observer.h" |
19 #include "ash/wm/common/wm_window_observer.h" | 19 #include "ash/common/wm/wm_window_observer.h" |
20 #include "ash/wm/common/wm_window_tracker.h" | 20 #include "ash/common/wm/wm_window_tracker.h" |
21 #include "base/compiler_specific.h" | 21 #include "base/compiler_specific.h" |
22 #include "base/macros.h" | 22 #include "base/macros.h" |
23 #include "base/memory/weak_ptr.h" | 23 #include "base/memory/weak_ptr.h" |
24 #include "ui/keyboard/keyboard_controller.h" | 24 #include "ui/keyboard/keyboard_controller.h" |
25 #include "ui/keyboard/keyboard_controller_observer.h" | 25 #include "ui/keyboard/keyboard_controller_observer.h" |
26 | 26 |
27 namespace aura { | 27 namespace aura { |
28 class Window; | 28 class Window; |
29 } | 29 } |
30 | 30 |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 // The last active panel. Used to maintain stacking order even if no panels | 203 // The last active panel. Used to maintain stacking order even if no panels |
204 // are currently focused. | 204 // are currently focused. |
205 wm::WmWindow* last_active_panel_; | 205 wm::WmWindow* last_active_panel_; |
206 base::WeakPtrFactory<PanelLayoutManager> weak_factory_; | 206 base::WeakPtrFactory<PanelLayoutManager> weak_factory_; |
207 | 207 |
208 DISALLOW_COPY_AND_ASSIGN(PanelLayoutManager); | 208 DISALLOW_COPY_AND_ASSIGN(PanelLayoutManager); |
209 }; | 209 }; |
210 | 210 |
211 } // namespace ash | 211 } // namespace ash |
212 | 212 |
213 #endif // ASH_WM_COMMON_PANELS_PANEL_LAYOUT_MANAGER_H_ | 213 #endif // ASH_COMMON_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ |
OLD | NEW |