| OLD | NEW |
| 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 |
| OLD | NEW |