OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_WM_DOCK_DOCKED_WINDOW_LAYOUT_MANAGER_H_ | 5 #ifndef ASH_WM_DOCK_DOCKED_WINDOW_LAYOUT_MANAGER_H_ |
6 #define ASH_COMMON_WM_DOCK_DOCKED_WINDOW_LAYOUT_MANAGER_H_ | 6 #define ASH_WM_DOCK_DOCKED_WINDOW_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/shell_observer.h" | 11 #include "ash/common/shell_observer.h" |
12 #include "ash/common/wm/dock/dock_types.h" | |
13 #include "ash/common/wm/dock/docked_window_layout_manager_observer.h" | |
14 #include "ash/common/wm/window_state_observer.h" | |
15 #include "ash/common/wm/wm_snap_to_pixel_layout_manager.h" | |
16 #include "ash/common/wm_activation_observer.h" | 12 #include "ash/common/wm_activation_observer.h" |
| 13 #include "ash/wm/dock/dock_types.h" |
| 14 #include "ash/wm/dock/docked_window_layout_manager_observer.h" |
| 15 #include "ash/wm/window_state_observer.h" |
| 16 #include "ash/wm/wm_snap_to_pixel_layout_manager.h" |
17 #include "base/compiler_specific.h" | 17 #include "base/compiler_specific.h" |
18 #include "base/macros.h" | 18 #include "base/macros.h" |
19 #include "base/observer_list.h" | 19 #include "base/observer_list.h" |
20 #include "base/time/time.h" | 20 #include "base/time/time.h" |
21 #include "ui/aura/window_observer.h" | 21 #include "ui/aura/window_observer.h" |
22 #include "ui/display/display_observer.h" | 22 #include "ui/display/display_observer.h" |
23 #include "ui/gfx/geometry/rect.h" | 23 #include "ui/gfx/geometry/rect.h" |
24 #include "ui/keyboard/keyboard_controller_observer.h" | 24 #include "ui/keyboard/keyboard_controller_observer.h" |
25 | 25 |
26 namespace ash { | 26 namespace ash { |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 std::unique_ptr<DockedBackgroundWidget> background_widget_; | 312 std::unique_ptr<DockedBackgroundWidget> background_widget_; |
313 | 313 |
314 // Observers of dock bounds changes. | 314 // Observers of dock bounds changes. |
315 base::ObserverList<DockedWindowLayoutManagerObserver> observer_list_; | 315 base::ObserverList<DockedWindowLayoutManagerObserver> observer_list_; |
316 | 316 |
317 DISALLOW_COPY_AND_ASSIGN(DockedWindowLayoutManager); | 317 DISALLOW_COPY_AND_ASSIGN(DockedWindowLayoutManager); |
318 }; | 318 }; |
319 | 319 |
320 } // namespace ash | 320 } // namespace ash |
321 | 321 |
322 #endif // ASH_COMMON_WM_DOCK_DOCKED_WINDOW_LAYOUT_MANAGER_H_ | 322 #endif // ASH_WM_DOCK_DOCKED_WINDOW_LAYOUT_MANAGER_H_ |
OLD | NEW |