diff options
author | Beverly <beverlyt@google.com> | 2021-04-07 15:04:15 -0400 |
---|---|---|
committer | Beverly Tai <beverlyt@google.com> | 2021-04-08 19:30:27 +0000 |
commit | 25be6577c30870a5bfb6bc614486886baf10035d (patch) | |
tree | b169da1f67870f3038ed2a4c48a36bea114638a4 /packages/SystemUI/src/com/android/keyguard/KeyguardViewController.java | |
parent | 9a5967ffefd540e7c69b587e7d925d16a237f1e1 (diff) |
Update DisabledUdfpsCtrl to LockIconViewController
Remove the old icon below the status bar on keyguard. Instead, a lock
icon will show beneath the notification shade for devices with either
udfps or face auth enrolled. All other devices will no longer have a
lock icon.
Test: manual, atest SystemUITests
Bug: 183910378
Change-Id: I7eebc363150641b4d63ee0f35b379d163e3a71d5
Diffstat (limited to 'packages/SystemUI/src/com/android/keyguard/KeyguardViewController.java')
-rw-r--r-- | packages/SystemUI/src/com/android/keyguard/KeyguardViewController.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardViewController.java b/packages/SystemUI/src/com/android/keyguard/KeyguardViewController.java index 9766ee128f7c..015c4e44185b 100644 --- a/packages/SystemUI/src/com/android/keyguard/KeyguardViewController.java +++ b/packages/SystemUI/src/com/android/keyguard/KeyguardViewController.java @@ -182,7 +182,6 @@ public interface KeyguardViewController { * @param container * @param notificationPanelViewController * @param biometricUnlockController - * @param lockIconContainer * @param notificationContainer * @param bypassController */ @@ -190,6 +189,6 @@ public interface KeyguardViewController { ViewGroup container, NotificationPanelViewController notificationPanelViewController, BiometricUnlockController biometricUnlockController, - ViewGroup lockIconContainer, View notificationContainer, + View notificationContainer, KeyguardBypassController bypassController); } |