OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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_SHELF_SHELF_LAYOUT_MANAGER_H_ | 5 #ifndef ASH_COMMON_SHELF_SHELF_LAYOUT_MANAGER_H_ |
6 #define ASH_COMMON_SHELF_SHELF_LAYOUT_MANAGER_H_ | 6 #define ASH_COMMON_SHELF_SHELF_LAYOUT_MANAGER_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
11 #include "ash/common/session/session_state_observer.h" | 11 #include "ash/common/session/session_state_observer.h" |
12 #include "ash/common/shelf/shelf_types.h" | |
13 #include "ash/common/shelf/shelf_widget.h" | 12 #include "ash/common/shelf/shelf_widget.h" |
14 #include "ash/common/shell_observer.h" | 13 #include "ash/common/shell_observer.h" |
15 #include "ash/common/wm/background_animator.h" | 14 #include "ash/common/wm/background_animator.h" |
16 #include "ash/common/wm/dock/docked_window_layout_manager_observer.h" | 15 #include "ash/common/wm/dock/docked_window_layout_manager_observer.h" |
17 #include "ash/common/wm/lock_state_observer.h" | 16 #include "ash/common/wm/lock_state_observer.h" |
18 #include "ash/common/wm/window_state.h" | 17 #include "ash/common/wm/window_state.h" |
19 #include "ash/common/wm/wm_snap_to_pixel_layout_manager.h" | 18 #include "ash/common/wm/wm_snap_to_pixel_layout_manager.h" |
20 #include "ash/common/wm/workspace/workspace_types.h" | 19 #include "ash/common/wm/workspace/workspace_types.h" |
21 #include "ash/common/wm_activation_observer.h" | 20 #include "ash/common/wm_activation_observer.h" |
| 21 #include "ash/public/cpp/shelf_types.h" |
22 #include "base/macros.h" | 22 #include "base/macros.h" |
23 #include "base/observer_list.h" | 23 #include "base/observer_list.h" |
24 #include "base/timer/timer.h" | 24 #include "base/timer/timer.h" |
25 #include "ui/gfx/geometry/insets.h" | 25 #include "ui/gfx/geometry/insets.h" |
26 #include "ui/gfx/geometry/rect.h" | 26 #include "ui/gfx/geometry/rect.h" |
27 #include "ui/keyboard/keyboard_controller_observer.h" | 27 #include "ui/keyboard/keyboard_controller_observer.h" |
28 | 28 |
29 namespace ui { | 29 namespace ui { |
30 class ImplicitAnimationObserver; | 30 class ImplicitAnimationObserver; |
31 } | 31 } |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 // The flag to enforce invisible shelf (as in MD-experiemntal). | 372 // The flag to enforce invisible shelf (as in MD-experiemntal). |
373 // TODO(oshima): Remove this when MD immersive is launched. | 373 // TODO(oshima): Remove this when MD immersive is launched. |
374 bool invisible_auto_hide_shelf_ = false; | 374 bool invisible_auto_hide_shelf_ = false; |
375 | 375 |
376 DISALLOW_COPY_AND_ASSIGN(ShelfLayoutManager); | 376 DISALLOW_COPY_AND_ASSIGN(ShelfLayoutManager); |
377 }; | 377 }; |
378 | 378 |
379 } // namespace ash | 379 } // namespace ash |
380 | 380 |
381 #endif // ASH_COMMON_SHELF_SHELF_LAYOUT_MANAGER_H_ | 381 #endif // ASH_COMMON_SHELF_SHELF_LAYOUT_MANAGER_H_ |
OLD | NEW |