| 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/common/shutdown_controller.h" | 5 #include "ash/shutdown_controller.h" |
| 6 | 6 |
| 7 #include "ash/common/shell_delegate.h" | 7 #include "ash/shell_delegate.h" |
| 8 #include "ash/common/wm_shell.h" | 8 #include "ash/wm_shell.h" |
| 9 #include "base/sys_info.h" | 9 #include "base/sys_info.h" |
| 10 #include "chromeos/dbus/dbus_thread_manager.h" | 10 #include "chromeos/dbus/dbus_thread_manager.h" |
| 11 #include "chromeos/dbus/power_manager_client.h" | 11 #include "chromeos/dbus/power_manager_client.h" |
| 12 | 12 |
| 13 namespace ash { | 13 namespace ash { |
| 14 | 14 |
| 15 ShutdownController::ShutdownController() {} | 15 ShutdownController::ShutdownController() {} |
| 16 | 16 |
| 17 ShutdownController::~ShutdownController() {} | 17 ShutdownController::~ShutdownController() {} |
| 18 | 18 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 void ShutdownController::SetRebootOnShutdown(bool reboot_on_shutdown) { | 34 void ShutdownController::SetRebootOnShutdown(bool reboot_on_shutdown) { |
| 35 reboot_on_shutdown_ = reboot_on_shutdown; | 35 reboot_on_shutdown_ = reboot_on_shutdown; |
| 36 } | 36 } |
| 37 | 37 |
| 38 void ShutdownController::BindRequest(mojom::ShutdownControllerRequest request) { | 38 void ShutdownController::BindRequest(mojom::ShutdownControllerRequest request) { |
| 39 bindings_.AddBinding(this, std::move(request)); | 39 bindings_.AddBinding(this, std::move(request)); |
| 40 } | 40 } |
| 41 | 41 |
| 42 } // namespace ash | 42 } // namespace ash |
| OLD | NEW |