| Index: ash/display/projecting_observer_chromeos.cc
|
| diff --git a/ash/display/projecting_observer_chromeos.cc b/ash/display/projecting_observer_chromeos.cc
|
| index 0bf6af47883e4b0f12c949a7e547c7ec08962177..58c7bafc713aa0232b91ccb74fa9ee9676536283 100644
|
| --- a/ash/display/projecting_observer_chromeos.cc
|
| +++ b/ash/display/projecting_observer_chromeos.cc
|
| @@ -52,8 +52,8 @@ void ProjectingObserver::OnCastingSessionStartedOrStopped(bool started) {
|
| void ProjectingObserver::SetIsProjecting() {
|
| // "Projecting" is defined as having more than 1 output connected while at
|
| // least one of them is an internal output.
|
| - bool projecting = has_internal_output_ &&
|
| - (output_count_ + casting_session_count_ > 1);
|
| + bool projecting =
|
| + has_internal_output_ && (output_count_ + casting_session_count_ > 1);
|
|
|
| power_manager_client_->SetIsProjecting(projecting);
|
| }
|
|
|