| OLD | NEW |
| (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/shutdown_controller.h" | |
| 6 | |
| 7 #include "ash/shell_delegate.h" | |
| 8 #include "ash/wm_shell.h" | |
| 9 #include "base/sys_info.h" | |
| 10 #include "chromeos/dbus/dbus_thread_manager.h" | |
| 11 #include "chromeos/dbus/power_manager_client.h" | |
| 12 | |
| 13 namespace ash { | |
| 14 | |
| 15 ShutdownController::ShutdownController() {} | |
| 16 | |
| 17 ShutdownController::~ShutdownController() {} | |
| 18 | |
| 19 void ShutdownController::ShutDownOrReboot() { | |
| 20 // For developers on Linux desktop just exit the app. | |
| 21 if (!base::SysInfo::IsRunningOnChromeOS()) { | |
| 22 WmShell::Get()->delegate()->Exit(); | |
| 23 return; | |
| 24 } | |
| 25 | |
| 26 // On real Chrome OS hardware the power manager handles shutdown. | |
| 27 using chromeos::DBusThreadManager; | |
| 28 if (reboot_on_shutdown_) | |
| 29 DBusThreadManager::Get()->GetPowerManagerClient()->RequestRestart(); | |
| 30 else | |
| 31 DBusThreadManager::Get()->GetPowerManagerClient()->RequestShutdown(); | |
| 32 } | |
| 33 | |
| 34 void ShutdownController::SetRebootOnShutdown(bool reboot_on_shutdown) { | |
| 35 reboot_on_shutdown_ = reboot_on_shutdown; | |
| 36 } | |
| 37 | |
| 38 void ShutdownController::BindRequest(mojom::ShutdownControllerRequest request) { | |
| 39 bindings_.AddBinding(this, std::move(request)); | |
| 40 } | |
| 41 | |
| 42 } // namespace ash | |
| OLD | NEW |