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 #include "ash/shell.h" | 5 #include "ash/shell.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <string> | 8 #include <string> |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
11 #include "ash/accelerators/accelerator_controller.h" | 11 #include "ash/accelerators/accelerator_controller.h" |
12 #include "ash/accelerators/accelerator_delegate.h" | 12 #include "ash/accelerators/accelerator_delegate.h" |
13 #include "ash/accelerators/focus_manager_factory.h" | 13 #include "ash/accelerators/focus_manager_factory.h" |
14 #include "ash/aura/wm_shell_aura.h" | 14 #include "ash/aura/wm_shell_aura.h" |
15 #include "ash/aura/wm_window_aura.h" | 15 #include "ash/aura/wm_window_aura.h" |
16 #include "ash/autoclick/autoclick_controller.h" | 16 #include "ash/autoclick/autoclick_controller.h" |
17 #include "ash/common/accessibility_delegate.h" | 17 #include "ash/common/accessibility_delegate.h" |
18 #include "ash/common/ash_switches.h" | 18 #include "ash/common/ash_switches.h" |
19 #include "ash/common/keyboard/keyboard_ui.h" | 19 #include "ash/common/keyboard/keyboard_ui.h" |
20 #include "ash/common/login_status.h" | 20 #include "ash/common/login_status.h" |
21 #include "ash/common/session/session_state_delegate.h" | 21 #include "ash/common/session/session_state_delegate.h" |
22 #include "ash/common/shelf/shelf_item_delegate.h" | 22 #include "ash/common/shelf/shelf_item_delegate.h" |
23 #include "ash/common/shelf/shelf_item_delegate_manager.h" | 23 #include "ash/common/shelf/shelf_item_delegate_manager.h" |
24 #include "ash/common/shelf/shelf_model.h" | 24 #include "ash/common/shelf/shelf_model.h" |
25 #include "ash/common/shell_delegate.h" | 25 #include "ash/common/shell_delegate.h" |
26 #include "ash/common/shell_window_ids.h" | 26 #include "ash/common/shell_window_ids.h" |
27 #include "ash/common/system/locale/locale_notification_controller.h" | 27 #include "ash/common/system/locale/locale_notification_controller.h" |
| 28 #include "ash/common/system/toast/toast_manager.h" |
28 #include "ash/common/system/tray/system_tray_delegate.h" | 29 #include "ash/common/system/tray/system_tray_delegate.h" |
29 #include "ash/common/wm/maximize_mode/maximize_mode_controller.h" | 30 #include "ash/common/wm/maximize_mode/maximize_mode_controller.h" |
30 #include "ash/common/wm/maximize_mode/maximize_mode_window_manager.h" | 31 #include "ash/common/wm/maximize_mode/maximize_mode_window_manager.h" |
31 #include "ash/common/wm/mru_window_tracker.h" | 32 #include "ash/common/wm/mru_window_tracker.h" |
32 #include "ash/common/wm/root_window_finder.h" | 33 #include "ash/common/wm/root_window_finder.h" |
33 #include "ash/common/wm/window_positioner.h" | 34 #include "ash/common/wm/window_positioner.h" |
34 #include "ash/common/wm_shell.h" | 35 #include "ash/common/wm_shell.h" |
35 #include "ash/desktop_background/desktop_background_controller.h" | 36 #include "ash/desktop_background/desktop_background_controller.h" |
36 #include "ash/desktop_background/desktop_background_view.h" | 37 #include "ash/desktop_background/desktop_background_view.h" |
37 #include "ash/desktop_background/user_wallpaper_delegate.h" | 38 #include "ash/desktop_background/user_wallpaper_delegate.h" |
(...skipping 18 matching lines...) Expand all Loading... |
56 #include "ash/pointer_watcher_delegate.h" | 57 #include "ash/pointer_watcher_delegate.h" |
57 #include "ash/root_window_controller.h" | 58 #include "ash/root_window_controller.h" |
58 #include "ash/shelf/app_list_shelf_item_delegate.h" | 59 #include "ash/shelf/app_list_shelf_item_delegate.h" |
59 #include "ash/shelf/shelf.h" | 60 #include "ash/shelf/shelf.h" |
60 #include "ash/shelf/shelf_delegate.h" | 61 #include "ash/shelf/shelf_delegate.h" |
61 #include "ash/shelf/shelf_widget.h" | 62 #include "ash/shelf/shelf_widget.h" |
62 #include "ash/shelf/shelf_window_watcher.h" | 63 #include "ash/shelf/shelf_window_watcher.h" |
63 #include "ash/shell_factory.h" | 64 #include "ash/shell_factory.h" |
64 #include "ash/shell_init_params.h" | 65 #include "ash/shell_init_params.h" |
65 #include "ash/system/status_area_widget.h" | 66 #include "ash/system/status_area_widget.h" |
66 #include "ash/system/toast/toast_manager.h" | |
67 #include "ash/utility/screenshot_controller.h" | 67 #include "ash/utility/screenshot_controller.h" |
68 #include "ash/wm/ash_focus_rules.h" | 68 #include "ash/wm/ash_focus_rules.h" |
69 #include "ash/wm/ash_native_cursor_manager.h" | 69 #include "ash/wm/ash_native_cursor_manager.h" |
70 #include "ash/wm/event_client_impl.h" | 70 #include "ash/wm/event_client_impl.h" |
71 #include "ash/wm/lock_state_controller.h" | 71 #include "ash/wm/lock_state_controller.h" |
72 #include "ash/wm/overlay_event_filter.h" | 72 #include "ash/wm/overlay_event_filter.h" |
73 #include "ash/wm/overview/scoped_overview_animation_settings_factory_aura.h" | 73 #include "ash/wm/overview/scoped_overview_animation_settings_factory_aura.h" |
74 #include "ash/wm/power_button_controller.h" | 74 #include "ash/wm/power_button_controller.h" |
75 #include "ash/wm/resize_shadow_controller.h" | 75 #include "ash/wm/resize_shadow_controller.h" |
76 #include "ash/wm/screen_pinning_controller.h" | 76 #include "ash/wm/screen_pinning_controller.h" |
(...skipping 1091 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1168 | 1168 |
1169 void Shell::OnWindowActivated( | 1169 void Shell::OnWindowActivated( |
1170 aura::client::ActivationChangeObserver::ActivationReason reason, | 1170 aura::client::ActivationChangeObserver::ActivationReason reason, |
1171 aura::Window* gained_active, | 1171 aura::Window* gained_active, |
1172 aura::Window* lost_active) { | 1172 aura::Window* lost_active) { |
1173 if (gained_active) | 1173 if (gained_active) |
1174 target_root_window_ = gained_active->GetRootWindow(); | 1174 target_root_window_ = gained_active->GetRootWindow(); |
1175 } | 1175 } |
1176 | 1176 |
1177 } // namespace ash | 1177 } // namespace ash |
OLD | NEW |