summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/src/com/android/systemui/keyguard
diff options
context:
space:
mode:
authorJim Miller <jaggies@google.com>2015-03-23 23:59:22 -0700
committerJim Miller <jaggies@google.com>2015-03-24 17:02:46 -0700
commit9f0753f5a378fc80da86305b33244acc6fc53f01 (patch)
treea86544b9552afaf5e332273dabc1684d9c40ff8a /packages/SystemUI/src/com/android/systemui/keyguard
parent9b58c85524675fd81cd093a8df5273a02f537661 (diff)
downloadframeworks_base-9f0753f5a378fc80da86305b33244acc6fc53f01.zip
frameworks_base-9f0753f5a378fc80da86305b33244acc6fc53f01.tar.gz
frameworks_base-9f0753f5a378fc80da86305b33244acc6fc53f01.tar.bz2
Refactor fingerprint API
- enroll() and authenticate() now take an explicit callback object. - better handling of strings - use framework resources for commonn error strings - add vendor-specific arrays to resources Bug 16487912 Change-Id: Idf34242fdd06bba1903cdb22bf20169d15d92b82
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/keyguard')
-rw-r--r--packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
index 275a6be..001d660 100644
--- a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
+++ b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
@@ -436,7 +436,8 @@ public class KeyguardViewMediator extends SystemUI {
}
}
- public void onFingerprintRecognized(int userId) {
+ @Override
+ public void onFingerprintAuthenticated(int userId) {
if (mStatusBarKeyguardViewManager.isBouncerShowing()) {
mViewMediatorCallback.keyguardDone(true);
} else {