Index: chrome/browser/ui/webui/settings/chromeos/device_power_handler.h |
diff --git a/chrome/browser/ui/webui/settings/chromeos/device_power_handler.h b/chrome/browser/ui/webui/settings/chromeos/device_power_handler.h |
index eaaf0cc9a58aab050e582f7552e5806484e53255..f41724cfc1642376f27d31d4b0b2e5c8b8cbc082 100644 |
--- a/chrome/browser/ui/webui/settings/chromeos/device_power_handler.h |
+++ b/chrome/browser/ui/webui/settings/chromeos/device_power_handler.h |
@@ -5,11 +5,17 @@ |
#ifndef CHROME_BROWSER_UI_WEBUI_SETTINGS_CHROMEOS_DEVICE_POWER_HANDLER_H_ |
#define CHROME_BROWSER_UI_WEBUI_SETTINGS_CHROMEOS_DEVICE_POWER_HANDLER_H_ |
+#include <memory> |
+ |
#include "ash/system/power/power_status.h" |
#include "base/macros.h" |
#include "base/scoped_observer.h" |
#include "base/strings/string16.h" |
#include "chrome/browser/ui/webui/settings/settings_page_ui_handler.h" |
+#include "chromeos/dbus/power_policy_controller.h" |
+ |
+class PrefChangeRegistrar; |
+class PrefService; |
namespace base { |
class ListValue; |
@@ -22,7 +28,7 @@ namespace settings { |
class PowerHandler : public ::settings::SettingsPageUIHandler, |
public ash::PowerStatus::Observer { |
public: |
- PowerHandler(); |
+ explicit PowerHandler(PrefService* prefs); |
~PowerHandler() override; |
// SettingsPageUIHandler implementation. |
@@ -34,22 +40,57 @@ class PowerHandler : public ::settings::SettingsPageUIHandler, |
void OnPowerStatusChanged() override; |
private: |
+ // Idle behaviors presented in the UI. These are mapped to preferences by |
+ // HandleSetIdleBehavior(). Values are shared with JS. |
+ enum class IdleBehavior { |
+ DISPLAY_OFF_SLEEP = 0, |
+ DISPLAY_OFF_STAY_AWAKE = 1, |
+ DISPLAY_ON = 2, |
+ OTHER = 3, |
+ }; |
+ |
// Handler to request updating the power status. |
void HandleUpdatePowerStatus(const base::ListValue* args); |
// Handler to change the power source. |
void HandleSetPowerSource(const base::ListValue* args); |
+ // Handler to request the current power management settings. Just calls |
+ // SendPowerManagementSettings(). |
+ void HandleRequestPowerManagementSettings(const base::ListValue* args); |
+ |
+ // Handlers to change the idle and lid-closed behaviors. |
+ void HandleSetIdleBehavior(const base::ListValue* args); |
+ void HandleSetLidClosedBehavior(const base::ListValue* args); |
+ |
// Updates the UI with the current battery status. |
void SendBatteryStatus(); |
// Updates the UI with a list of available dual-role power sources. |
void SendPowerSources(); |
- ash::PowerStatus* power_status_; |
+ // Updates the UI to display the current power management settings. If the |
+ // settings didn't change since the previous call, nothing is sent unless |
+ // |force| is true. |
+ void SendPowerManagementSettings(bool force); |
+ |
+ PrefService* prefs_; // Not owned. |
+ ash::PowerStatus* power_status_; // Not owned. |
+ |
+ // Used to watch power management prefs for changes so the UI can be notified. |
+ std::unique_ptr<PrefChangeRegistrar> pref_change_registrar_; |
ScopedObserver<ash::PowerStatus, PowerHandler> power_observer_; |
+ // Last values sent by SendPowerManagementSettings(), cached here so |
+ // SendPowerManagementSettings() can avoid spamming the UI after this class |
+ // changes multiple prefs at once. |
+ IdleBehavior last_idle_behavior_ = IdleBehavior::DISPLAY_OFF_SLEEP; |
+ chromeos::PowerPolicyController::Action last_lid_closed_behavior_ = |
+ chromeos::PowerPolicyController::ACTION_SUSPEND; |
+ bool last_idle_managed_ = false; |
+ bool last_lid_closed_managed_ = false; |
+ |
DISALLOW_COPY_AND_ASSIGN(PowerHandler); |
}; |