| 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_PANELS_PANEL_LAYOUT_MANAGER_H_ | 5 #ifndef ASH_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ |
| 6 #define ASH_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ | 6 #define ASH_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/shelf/shelf_icon_observer.h" | 12 #include "ash/shelf/shelf_icon_observer.h" |
| 13 #include "ash/shelf/shelf_layout_manager_observer.h" | 13 #include "ash/shelf/shelf_layout_manager_observer.h" |
| 14 #include "ash/shell_observer.h" | 14 #include "ash/shell_observer.h" |
| 15 #include "ash/wm/common/window_state_observer.h" |
| 15 #include "ash/wm/common/wm_activation_observer.h" | 16 #include "ash/wm/common/wm_activation_observer.h" |
| 16 #include "ash/wm/common/wm_display_observer.h" | 17 #include "ash/wm/common/wm_display_observer.h" |
| 17 #include "ash/wm/common/wm_layout_manager.h" | 18 #include "ash/wm/common/wm_layout_manager.h" |
| 18 #include "ash/wm/common/wm_overview_mode_observer.h" | 19 #include "ash/wm/common/wm_overview_mode_observer.h" |
| 19 #include "ash/wm/common/wm_root_window_controller_observer.h" | 20 #include "ash/wm/common/wm_root_window_controller_observer.h" |
| 20 #include "ash/wm/common/wm_window_observer.h" | 21 #include "ash/wm/common/wm_window_observer.h" |
| 21 #include "ash/wm/common/wm_window_tracker.h" | 22 #include "ash/wm/common/wm_window_tracker.h" |
| 22 #include "ash/wm/window_state_observer.h" | |
| 23 #include "base/compiler_specific.h" | 23 #include "base/compiler_specific.h" |
| 24 #include "base/macros.h" | 24 #include "base/macros.h" |
| 25 #include "base/memory/weak_ptr.h" | 25 #include "base/memory/weak_ptr.h" |
| 26 #include "ui/keyboard/keyboard_controller.h" | 26 #include "ui/keyboard/keyboard_controller.h" |
| 27 #include "ui/keyboard/keyboard_controller_observer.h" | 27 #include "ui/keyboard/keyboard_controller_observer.h" |
| 28 | 28 |
| 29 namespace aura { | 29 namespace aura { |
| 30 class Window; | 30 class Window; |
| 31 } | 31 } |
| 32 | 32 |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 // are currently focused. | 211 // are currently focused. |
| 212 wm::WmWindow* last_active_panel_; | 212 wm::WmWindow* last_active_panel_; |
| 213 base::WeakPtrFactory<PanelLayoutManager> weak_factory_; | 213 base::WeakPtrFactory<PanelLayoutManager> weak_factory_; |
| 214 | 214 |
| 215 DISALLOW_COPY_AND_ASSIGN(PanelLayoutManager); | 215 DISALLOW_COPY_AND_ASSIGN(PanelLayoutManager); |
| 216 }; | 216 }; |
| 217 | 217 |
| 218 } // namespace ash | 218 } // namespace ash |
| 219 | 219 |
| 220 #endif // ASH_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ | 220 #endif // ASH_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ |
| OLD | NEW |