diff options
author | Jim Miller <jaggies@google.com> | 2015-03-23 23:59:22 -0700 |
---|---|---|
committer | Jim Miller <jaggies@google.com> | 2015-03-24 17:02:46 -0700 |
commit | 9f0753f5a378fc80da86305b33244acc6fc53f01 (patch) | |
tree | a86544b9552afaf5e332273dabc1684d9c40ff8a /packages/SystemUI/src/com/android/systemui/statusbar | |
parent | 9b58c85524675fd81cd093a8df5273a02f537661 (diff) | |
download | frameworks_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/statusbar')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/UnlockMethodCache.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/UnlockMethodCache.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/UnlockMethodCache.java index 5ef345b..65cd268 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/UnlockMethodCache.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/UnlockMethodCache.java @@ -125,7 +125,7 @@ public class UnlockMethodCache { } @Override - public void onFingerprintRecognized(int userId) { + public void onFingerprintAuthenticated(int userId) { update(false /* updateAlways */); } |