Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: ash/aura/wm_shell_aura.cc

Issue 2736753005: Converts WmActivationObserver to aura::client::ActivationChangeObserver (Closed)
Patch Set: cleanup Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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/aura/wm_shell_aura.h" 5 #include "ash/aura/wm_shell_aura.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "ash/aura/key_event_watcher_aura.h" 9 #include "ash/aura/key_event_watcher_aura.h"
10 #include "ash/aura/pointer_watcher_adapter.h" 10 #include "ash/aura/pointer_watcher_adapter.h"
11 #include "ash/common/session/session_state_delegate.h" 11 #include "ash/common/session/session_state_delegate.h"
12 #include "ash/common/shell_delegate.h" 12 #include "ash/common/shell_delegate.h"
13 #include "ash/common/shell_observer.h" 13 #include "ash/common/shell_observer.h"
14 #include "ash/common/wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard .h" 14 #include "ash/common/wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard .h"
15 #include "ash/common/wm/mru_window_tracker.h" 15 #include "ash/common/wm/mru_window_tracker.h"
16 #include "ash/common/wm/overview/window_selector_controller.h" 16 #include "ash/common/wm/overview/window_selector_controller.h"
17 #include "ash/common/wm_activation_observer.h"
18 #include "ash/common/wm_display_observer.h" 17 #include "ash/common/wm_display_observer.h"
19 #include "ash/common/wm_window.h" 18 #include "ash/common/wm_window.h"
20 #include "ash/display/window_tree_host_manager.h" 19 #include "ash/display/window_tree_host_manager.h"
21 #include "ash/host/ash_window_tree_host_init_params.h" 20 #include "ash/host/ash_window_tree_host_init_params.h"
22 #include "ash/laser/laser_pointer_controller.h" 21 #include "ash/laser/laser_pointer_controller.h"
23 #include "ash/magnifier/partial_magnification_controller.h" 22 #include "ash/magnifier/partial_magnification_controller.h"
24 #include "ash/metrics/task_switch_metrics_recorder.h" 23 #include "ash/metrics/task_switch_metrics_recorder.h"
25 #include "ash/shared/immersive_fullscreen_controller.h" 24 #include "ash/shared/immersive_fullscreen_controller.h"
26 #include "ash/shell.h" 25 #include "ash/shell.h"
27 #include "ash/touch/touch_uma.h" 26 #include "ash/touch/touch_uma.h"
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 for (auto& observer : display_observers_) 305 for (auto& observer : display_observers_)
307 observer.OnDisplayConfigurationChanging(); 306 observer.OnDisplayConfigurationChanging();
308 } 307 }
309 308
310 void WmShellAura::OnDisplayConfigurationChanged() { 309 void WmShellAura::OnDisplayConfigurationChanged() {
311 for (auto& observer : display_observers_) 310 for (auto& observer : display_observers_)
312 observer.OnDisplayConfigurationChanged(); 311 observer.OnDisplayConfigurationChanged();
313 } 312 }
314 313
315 } // namespace ash 314 } // namespace ash
OLDNEW
« no previous file with comments | « ash/BUILD.gn ('k') | ash/common/shelf/shelf_layout_manager.h » ('j') | ash/shell.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698