Loading packages/SystemUI/src/com/android/keyguard/KeyguardUpdateMonitor.java +0 −4 Original line number Diff line number Diff line Loading @@ -2380,10 +2380,6 @@ public class KeyguardUpdateMonitor implements TrustManager.TrustListener, Dumpab stopListeningForFace(FACE_AUTH_STOPPED_USER_INPUT_ON_BOUNCER); } public boolean isFaceScanning() { return mFaceRunningState == BIOMETRIC_STATE_RUNNING; } private void updateFaceListeningState(int action, @NonNull FaceAuthUiEvent faceAuthUiEvent) { // If this message exists, we should not authenticate again until this message is // consumed by the handler Loading packages/SystemUI/src/com/android/systemui/FaceScanningOverlay.kt +1 −1 Original line number Diff line number Diff line Loading @@ -123,7 +123,7 @@ class FaceScanningOverlay( } override fun enableShowProtection(show: Boolean) { val showScanningAnimNow = keyguardUpdateMonitor.isFaceScanning && show val showScanningAnimNow = keyguardUpdateMonitor.isFaceDetectionRunning && show if (showScanningAnimNow == showScanningAnim) { return } Loading packages/SystemUI/src/com/android/systemui/decor/FaceScanningProviderFactory.kt +1 −1 Original line number Diff line number Diff line Loading @@ -99,7 +99,7 @@ class FaceScanningProviderFactory @Inject constructor( } fun shouldShowFaceScanningAnim(): Boolean { return canShowFaceScanningAnim() && keyguardUpdateMonitor.isFaceScanning return canShowFaceScanningAnim() && keyguardUpdateMonitor.isFaceDetectionRunning } } Loading Loading
packages/SystemUI/src/com/android/keyguard/KeyguardUpdateMonitor.java +0 −4 Original line number Diff line number Diff line Loading @@ -2380,10 +2380,6 @@ public class KeyguardUpdateMonitor implements TrustManager.TrustListener, Dumpab stopListeningForFace(FACE_AUTH_STOPPED_USER_INPUT_ON_BOUNCER); } public boolean isFaceScanning() { return mFaceRunningState == BIOMETRIC_STATE_RUNNING; } private void updateFaceListeningState(int action, @NonNull FaceAuthUiEvent faceAuthUiEvent) { // If this message exists, we should not authenticate again until this message is // consumed by the handler Loading
packages/SystemUI/src/com/android/systemui/FaceScanningOverlay.kt +1 −1 Original line number Diff line number Diff line Loading @@ -123,7 +123,7 @@ class FaceScanningOverlay( } override fun enableShowProtection(show: Boolean) { val showScanningAnimNow = keyguardUpdateMonitor.isFaceScanning && show val showScanningAnimNow = keyguardUpdateMonitor.isFaceDetectionRunning && show if (showScanningAnimNow == showScanningAnim) { return } Loading
packages/SystemUI/src/com/android/systemui/decor/FaceScanningProviderFactory.kt +1 −1 Original line number Diff line number Diff line Loading @@ -99,7 +99,7 @@ class FaceScanningProviderFactory @Inject constructor( } fun shouldShowFaceScanningAnim(): Boolean { return canShowFaceScanningAnim() && keyguardUpdateMonitor.isFaceScanning return canShowFaceScanningAnim() && keyguardUpdateMonitor.isFaceDetectionRunning } } Loading