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_SHELF_SHELF_LAYOUT_MANAGER_H_ | 5 #ifndef ASH_SHELF_SHELF_LAYOUT_MANAGER_H_ |
6 #define ASH_SHELF_SHELF_LAYOUT_MANAGER_H_ | 6 #define ASH_SHELF_SHELF_LAYOUT_MANAGER_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "ash/ash_export.h" | 11 #include "ash/ash_export.h" |
12 #include "ash/common/session/session_state_observer.h" | 12 #include "ash/common/session/session_state_observer.h" |
13 #include "ash/common/shelf/shelf_types.h" | 13 #include "ash/common/shelf/shelf_types.h" |
14 #include "ash/common/shell_observer.h" | 14 #include "ash/common/shell_observer.h" |
| 15 #include "ash/common/system/status_area_widget.h" |
15 #include "ash/common/wm/background_animator.h" | 16 #include "ash/common/wm/background_animator.h" |
16 #include "ash/common/wm/dock/docked_window_layout_manager_observer.h" | 17 #include "ash/common/wm/dock/docked_window_layout_manager_observer.h" |
17 #include "ash/common/wm/workspace/workspace_types.h" | 18 #include "ash/common/wm/workspace/workspace_types.h" |
18 #include "ash/shelf/shelf.h" | 19 #include "ash/shelf/shelf.h" |
19 #include "ash/snap_to_pixel_layout_manager.h" | 20 #include "ash/snap_to_pixel_layout_manager.h" |
20 #include "ash/system/status_area_widget.h" | |
21 #include "ash/wm/gestures/shelf_gesture_handler.h" | 21 #include "ash/wm/gestures/shelf_gesture_handler.h" |
22 #include "ash/wm/lock_state_observer.h" | 22 #include "ash/wm/lock_state_observer.h" |
23 #include "base/compiler_specific.h" | 23 #include "base/compiler_specific.h" |
24 #include "base/gtest_prod_util.h" | 24 #include "base/gtest_prod_util.h" |
25 #include "base/logging.h" | 25 #include "base/logging.h" |
26 #include "base/macros.h" | 26 #include "base/macros.h" |
27 #include "base/observer_list.h" | 27 #include "base/observer_list.h" |
28 #include "base/timer/timer.h" | 28 #include "base/timer/timer.h" |
29 #include "ui/gfx/geometry/insets.h" | 29 #include "ui/gfx/geometry/insets.h" |
30 #include "ui/gfx/geometry/rect.h" | 30 #include "ui/gfx/geometry/rect.h" |
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 | 394 |
395 std::unique_ptr<RootWindowControllerObserverImpl> | 395 std::unique_ptr<RootWindowControllerObserverImpl> |
396 root_window_controller_observer_; | 396 root_window_controller_observer_; |
397 | 397 |
398 DISALLOW_COPY_AND_ASSIGN(ShelfLayoutManager); | 398 DISALLOW_COPY_AND_ASSIGN(ShelfLayoutManager); |
399 }; | 399 }; |
400 | 400 |
401 } // namespace ash | 401 } // namespace ash |
402 | 402 |
403 #endif // ASH_SHELF_SHELF_LAYOUT_MANAGER_H_ | 403 #endif // ASH_SHELF_SHELF_LAYOUT_MANAGER_H_ |
OLD | NEW |