blob: d4db149314eb7c2750abb9e8fead2f17f43cd7b9 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/shutdown_controller.h"
#include <utility>
#include "ash/shell.h"
#include "ash/shell_delegate.h"
#include "ash/shutdown_reason.h"
#include "base/sys_info.h"
#include "chromeos/dbus/dbus_thread_manager.h"
#include "chromeos/dbus/power_manager_client.h"
namespace ash {
ShutdownController::ShutdownController() {}
ShutdownController::~ShutdownController() {}
void ShutdownController::ShutDownOrReboot(ShutdownReason reason) {
// For developers on Linux desktop just exit the app.
if (!base::SysInfo::IsRunningOnChromeOS()) {
Shell::Get()->shell_delegate()->Exit();
return;
}
if (reason == ShutdownReason::POWER_BUTTON) {
Shell::Get()->metrics()->RecordUserMetricsAction(
UMA_ACCEL_SHUT_DOWN_POWER_BUTTON);
}
// On real Chrome OS hardware the power manager handles shutdown.
using chromeos::DBusThreadManager;
if (reboot_on_shutdown_)
DBusThreadManager::Get()->GetPowerManagerClient()->RequestRestart();
else
DBusThreadManager::Get()->GetPowerManagerClient()->RequestShutdown();
}
void ShutdownController::SetRebootOnShutdown(bool reboot_on_shutdown) {
reboot_on_shutdown_ = reboot_on_shutdown;
}
void ShutdownController::BindRequest(mojom::ShutdownControllerRequest request) {
bindings_.AddBinding(this, std::move(request));
}
} // namespace ash