Merge "Display's transition phase checked before DPC init." into sc-v2-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
618c83b000
@@ -1052,11 +1052,6 @@ final class DisplayPowerController implements AutomaticBrightnessController.Call
|
|||||||
}
|
}
|
||||||
assert(state != Display.STATE_UNKNOWN);
|
assert(state != Display.STATE_UNKNOWN);
|
||||||
|
|
||||||
// Initialize things the first time the power state is changed.
|
|
||||||
if (mustInitialize) {
|
|
||||||
initialize(state);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Apply the proximity sensor.
|
// Apply the proximity sensor.
|
||||||
if (mProximitySensor != null) {
|
if (mProximitySensor != null) {
|
||||||
if (mPowerRequest.useProximitySensor && state != Display.STATE_OFF) {
|
if (mPowerRequest.useProximitySensor && state != Display.STATE_OFF) {
|
||||||
@@ -1107,6 +1102,11 @@ final class DisplayPowerController implements AutomaticBrightnessController.Call
|
|||||||
state = Display.STATE_OFF;
|
state = Display.STATE_OFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Initialize things the first time the power state is changed.
|
||||||
|
if (mustInitialize) {
|
||||||
|
initialize(state);
|
||||||
|
}
|
||||||
|
|
||||||
// Animate the screen state change unless already animating.
|
// Animate the screen state change unless already animating.
|
||||||
// The transition may be deferred, so after this point we will use the
|
// The transition may be deferred, so after this point we will use the
|
||||||
// actual state instead of the desired one.
|
// actual state instead of the desired one.
|
||||||
|
|||||||
Reference in New Issue
Block a user