| 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_COMMON_SHELF_SHELF_LAYOUT_MANAGER_H_ |
| 6 #define ASH_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" | 12 #include "ash/common/shelf/shelf_types.h" |
| 13 #include "ash/common/shelf/shelf_widget.h" |
| 13 #include "ash/common/shell_observer.h" | 14 #include "ash/common/shell_observer.h" |
| 14 #include "ash/common/wm/background_animator.h" | 15 #include "ash/common/wm/background_animator.h" |
| 15 #include "ash/common/wm/dock/docked_window_layout_manager_observer.h" | 16 #include "ash/common/wm/dock/docked_window_layout_manager_observer.h" |
| 16 #include "ash/common/wm/lock_state_observer.h" | 17 #include "ash/common/wm/lock_state_observer.h" |
| 17 #include "ash/common/wm/window_state.h" | 18 #include "ash/common/wm/window_state.h" |
| 18 #include "ash/common/wm/wm_snap_to_pixel_layout_manager.h" | 19 #include "ash/common/wm/wm_snap_to_pixel_layout_manager.h" |
| 19 #include "ash/common/wm/workspace/workspace_types.h" | 20 #include "ash/common/wm/workspace/workspace_types.h" |
| 20 #include "ash/common/wm_activation_observer.h" | 21 #include "ash/common/wm_activation_observer.h" |
| 21 #include "ash/shelf/shelf_widget.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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 bool invisible_auto_hide_shelf_ = false; | 371 bool invisible_auto_hide_shelf_ = false; |
| 372 | 372 |
| 373 std::unique_ptr<RootWindowControllerObserverImpl> | 373 std::unique_ptr<RootWindowControllerObserverImpl> |
| 374 root_window_controller_observer_; | 374 root_window_controller_observer_; |
| 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_SHELF_SHELF_LAYOUT_MANAGER_H_ | 381 #endif // ASH_COMMON_SHELF_SHELF_LAYOUT_MANAGER_H_ |
| OLD | NEW |