Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(544)

Unified Diff: ui/display/chromeos/display_configurator.h

Issue 1861593002: chromeos: Turn off displays on suspend (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: chromeos: Turn off displays on suspend Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/display/chromeos/display_configurator.h
diff --git a/ui/display/chromeos/display_configurator.h b/ui/display/chromeos/display_configurator.h
index aba0fa67a43170e8875471a608cc9ffa00ee81f2..f97392f35e87488a37daf04cbc46f9512a2761fa 100644
--- a/ui/display/chromeos/display_configurator.h
+++ b/ui/display/chromeos/display_configurator.h
@@ -300,13 +300,15 @@ class DISPLAY_EXPORT DisplayConfigurator : public NativeDisplayObserver {
typedef std::map<ContentProtectionClientId, ContentProtections>
ProtectionRequests;
+ // Updates |pending_*| members and applies the passed-in state. |callback| is
+ // invoked (perhaps synchronously) on completion.
+ void SetDisplayPowerInternal(chromeos::DisplayPowerState power_state,
+ int flags,
+ const ConfigurationCallback& callback);
+
// Configures displays. Invoked by |configure_timer_|.
void ConfigureDisplays();
- // Restores |requested_power_state_| after the system has resumed,
- // additionally forcing a probe. Invoked by |configure_timer_|.
- void RestoreRequestedPowerStateAfterResume();
-
// Notifies observers about an attempted state change.
void NotifyDisplayStateObservers(bool success,
MultipleDisplayState attempted_state);
@@ -394,11 +396,15 @@ class DISPLAY_EXPORT DisplayConfigurator : public NativeDisplayObserver {
// Stores the requested power state.
chromeos::DisplayPowerState requested_power_state_;
- // True if |requested_power_state_| has been changed due to a user request.
- bool requested_power_state_change_;
+ // The power state used by RunPendingConfiguration(). May be
+ // |requested_power_state_| or DISPLAY_POWER_ALL_OFF for suspend.
+ chromeos::DisplayPowerState pending_power_state_;
+
+ // True if |pending_power_state_| has been changed.
+ bool has_pending_power_state_;
// Bitwise-or value of the |kSetDisplayPower*| flags defined above.
- int requested_power_flags_;
+ int pending_power_flags_;
// List of callbacks from callers waiting for the display configuration to
// start/finish. Note these callbacks belong to the pending request, not a
« no previous file with comments | « no previous file | ui/display/chromeos/display_configurator.cc » ('j') | ui/display/chromeos/display_configurator_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698