File tree Expand file tree Collapse file tree
packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -79,9 +79,6 @@ constructor(
7979 private val selectedUserInteractor: SelectedUserInteractor ,
8080 private val deviceEntryFaceAuthInteractor: DeviceEntryFaceAuthInteractor ,
8181) {
82- private val passiveAuthBouncerDelay =
83- context.resources.getInteger(R .integer.primary_bouncer_passive_auth_delay).toLong()
84-
8582 /* * Runnable to show the primary bouncer. */
8683 val showRunnable = Runnable {
8784 repository.setPrimaryShow(true )
@@ -178,12 +175,7 @@ constructor(
178175
179176 Log .i(TAG , " Show primary bouncer requested, reason: $reason " )
180177 repository.setPrimaryShowingSoon(true )
181- if (usePrimaryBouncerPassiveAuthDelay()) {
182- Log .d(TAG , " delay bouncer, passive auth may succeed" )
183- mainHandler.postDelayed(showRunnable, passiveAuthBouncerDelay)
184- } else {
185- DejankUtils .postAfterTraversal(showRunnable)
186- }
178+ DejankUtils .postAfterTraversal(showRunnable)
187179 keyguardStateController.notifyPrimaryBouncerShowing(true )
188180 primaryBouncerCallbackInteractor.dispatchStartingToShow()
189181 return true
You can’t perform that action at this time.
0 commit comments