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

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

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

Powered by Google App Engine
This is Rietveld 408576698