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/launcher/launcher.h" | 11 #include "ash/launcher/launcher.h" |
12 #include "ash/shelf/background_animator.h" | 12 #include "ash/shelf/background_animator.h" |
13 #include "ash/shelf/shelf_types.h" | 13 #include "ash/shelf/shelf_types.h" |
14 #include "ash/shell_observer.h" | 14 #include "ash/shell_observer.h" |
15 #include "ash/system/status_area_widget.h" | 15 #include "ash/system/status_area_widget.h" |
16 #include "base/basictypes.h" | 16 #include "base/basictypes.h" |
17 #include "base/compiler_specific.h" | 17 #include "base/compiler_specific.h" |
18 #include "base/logging.h" | 18 #include "base/logging.h" |
19 #include "base/observer_list.h" | 19 #include "base/observer_list.h" |
20 #include "base/timer.h" | 20 #include "base/timer/timer.h" |
21 #include "ui/aura/client/activation_change_observer.h" | 21 #include "ui/aura/client/activation_change_observer.h" |
22 #include "ui/aura/layout_manager.h" | 22 #include "ui/aura/layout_manager.h" |
23 #include "ui/gfx/insets.h" | 23 #include "ui/gfx/insets.h" |
24 #include "ui/gfx/rect.h" | 24 #include "ui/gfx/rect.h" |
25 #include "ui/keyboard/keyboard_controller.h" | 25 #include "ui/keyboard/keyboard_controller.h" |
26 #include "ui/keyboard/keyboard_controller_observer.h" | 26 #include "ui/keyboard/keyboard_controller_observer.h" |
27 | 27 |
28 namespace aura { | 28 namespace aura { |
29 class RootWindow; | 29 class RootWindow; |
30 } | 30 } |
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 // The bounds of the keyboard. | 347 // The bounds of the keyboard. |
348 gfx::Rect keyboard_bounds_; | 348 gfx::Rect keyboard_bounds_; |
349 | 349 |
350 DISALLOW_COPY_AND_ASSIGN(ShelfLayoutManager); | 350 DISALLOW_COPY_AND_ASSIGN(ShelfLayoutManager); |
351 }; | 351 }; |
352 | 352 |
353 } // namespace internal | 353 } // namespace internal |
354 } // namespace ash | 354 } // namespace ash |
355 | 355 |
356 #endif // ASH_SHELF_SHELF_LAYOUT_MANAGER_H_ | 356 #endif // ASH_SHELF_SHELF_LAYOUT_MANAGER_H_ |
OLD | NEW |