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

Side by Side Diff: ash/display/shutdown_observer_chromeos.cc

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs 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
« no previous file with comments | « ash/display/shutdown_observer_chromeos.h ('k') | ash/display/window_tree_host_manager.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/display/shutdown_observer_chromeos.h" 5 #include "ash/display/shutdown_observer_chromeos.h"
6 6
7 #include "ash/common/wm_shell.h" 7 #include "ash/wm_shell.h"
8 #include "ui/display/manager/chromeos/display_configurator.h" 8 #include "ui/display/manager/chromeos/display_configurator.h"
9 9
10 namespace ash { 10 namespace ash {
11 11
12 ShutdownObserver::ShutdownObserver( 12 ShutdownObserver::ShutdownObserver(
13 display::DisplayConfigurator* display_configurator) 13 display::DisplayConfigurator* display_configurator)
14 : display_configurator_(display_configurator) { 14 : display_configurator_(display_configurator) {
15 WmShell::Get()->AddShellObserver(this); 15 WmShell::Get()->AddShellObserver(this);
16 } 16 }
17 17
18 ShutdownObserver::~ShutdownObserver() { 18 ShutdownObserver::~ShutdownObserver() {
19 WmShell::Get()->RemoveShellObserver(this); 19 WmShell::Get()->RemoveShellObserver(this);
20 } 20 }
21 21
22 void ShutdownObserver::OnAppTerminating() { 22 void ShutdownObserver::OnAppTerminating() {
23 // Stop handling display configuration events once the shutdown 23 // Stop handling display configuration events once the shutdown
24 // process starts. crbug.com/177014. 24 // process starts. crbug.com/177014.
25 display_configurator_->PrepareForExit(); 25 display_configurator_->PrepareForExit();
26 } 26 }
27 27
28 } // namespace ash 28 } // namespace ash
OLDNEW
« no previous file with comments | « ash/display/shutdown_observer_chromeos.h ('k') | ash/display/window_tree_host_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698