Merge "Fixed problem where scrim transition would be cancelled" into oc-mr1-dev

This commit is contained in:
TreeHugger Robot
2017-10-11 02:55:29 +00:00
committed by Android (Google) Code Review
2 changed files with 1 additions and 4 deletions

View File

@@ -84,9 +84,6 @@ public class DozeUi implements DozeMachine.Part {
case DOZE_REQUEST_PULSE:
pulseWhileDozing(mMachine.getPulseReason());
break;
case DOZE_PULSE_DONE:
mHost.abortPulsing();
break;
case INITIALIZED:
mHost.startDozing();
break;

View File

@@ -23,7 +23,7 @@ import android.os.Handler;
*/
public class DelayedWakeLock implements WakeLock {
private static final long RELEASE_DELAY_MS = 100;
private static final long RELEASE_DELAY_MS = 120;
private final Handler mHandler;
private final WakeLock mInner;