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_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 <vector> | 8 #include <vector> |
9 | 9 |
10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
11 #include "ash/session/session_state_observer.h" | 11 #include "ash/session/session_state_observer.h" |
12 #include "ash/shelf/background_animator.h" | 12 #include "ash/shelf/background_animator.h" |
13 #include "ash/shelf/shelf.h" | 13 #include "ash/shelf/shelf.h" |
14 #include "ash/shelf/shelf_types.h" | 14 #include "ash/shelf/shelf_types.h" |
15 #include "ash/shell_observer.h" | 15 #include "ash/shell_observer.h" |
16 #include "ash/snap_to_pixel_layout_manager.h" | 16 #include "ash/snap_to_pixel_layout_manager.h" |
17 #include "ash/system/status_area_widget.h" | 17 #include "ash/system/status_area_widget.h" |
18 #include "ash/wm/dock/docked_window_layout_manager_observer.h" | 18 #include "ash/wm/dock/docked_window_layout_manager_observer.h" |
19 #include "ash/wm/lock_state_observer.h" | 19 #include "ash/wm/lock_state_observer.h" |
20 #include "ash/wm/workspace/workspace_types.h" | 20 #include "ash/wm/workspace/workspace_types.h" |
21 #include "base/basictypes.h" | 21 #include "base/basictypes.h" |
22 #include "base/compiler_specific.h" | 22 #include "base/compiler_specific.h" |
23 #include "base/logging.h" | 23 #include "base/logging.h" |
24 #include "base/observer_list.h" | 24 #include "base/observer_list.h" |
25 #include "base/timer/timer.h" | 25 #include "base/timer/timer.h" |
26 #include "ui/gfx/insets.h" | 26 #include "ui/gfx/geometry/insets.h" |
27 #include "ui/gfx/rect.h" | 27 #include "ui/gfx/rect.h" |
28 #include "ui/keyboard/keyboard_controller.h" | 28 #include "ui/keyboard/keyboard_controller.h" |
29 #include "ui/keyboard/keyboard_controller_observer.h" | 29 #include "ui/keyboard/keyboard_controller_observer.h" |
30 #include "ui/wm/public/activation_change_observer.h" | 30 #include "ui/wm/public/activation_change_observer.h" |
31 | 31 |
32 namespace aura { | 32 namespace aura { |
33 class RootWindow; | 33 class RootWindow; |
34 } | 34 } |
35 | 35 |
36 namespace ui { | 36 namespace ui { |
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 | 395 |
396 // The show hide animation duration override or 0 for default. | 396 // The show hide animation duration override or 0 for default. |
397 int duration_override_in_ms_; | 397 int duration_override_in_ms_; |
398 | 398 |
399 DISALLOW_COPY_AND_ASSIGN(ShelfLayoutManager); | 399 DISALLOW_COPY_AND_ASSIGN(ShelfLayoutManager); |
400 }; | 400 }; |
401 | 401 |
402 } // namespace ash | 402 } // namespace ash |
403 | 403 |
404 #endif // ASH_SHELF_SHELF_LAYOUT_MANAGER_H_ | 404 #endif // ASH_SHELF_SHELF_LAYOUT_MANAGER_H_ |
OLD | NEW |