summaryrefslogtreecommitdiffstats
path: root/core/java/com
diff options
context:
space:
mode:
authorBrian Colonna <bcolonna@google.com>2012-10-31 23:07:00 -0400
committerBrian Colonna <bcolonna@google.com>2012-10-31 23:07:00 -0400
commit667b5d58b9e8b77221c87811c5c9aab1bfe44ffa (patch)
tree5b07275318ce78ef05d3e439a3b105323e3d33ef /core/java/com
parent11952e73af206c1def991e86a695a880fb0062b0 (diff)
downloadframeworks_base-667b5d58b9e8b77221c87811c5c9aab1bfe44ffa.zip
frameworks_base-667b5d58b9e8b77221c87811c5c9aab1bfe44ffa.tar.gz
frameworks_base-667b5d58b9e8b77221c87811c5c9aab1bfe44ffa.tar.bz2
Suppressing FUL after going to backup fixes b/7449820
Face Unlock would reappear when rotating a tablet after it had already fallen back to the backup unlock method. This change suppresses Face Unlock after going to the backup so it isn't seen again until the user leaves and revisits keyguard. This change also removes the exposeFallback() callback from Face Unlock. It has been unnecessary for a long tiem since Face Unlock no longer covers the backup. The Face Unlock service was therefore making unnecesaary calls via the AIDL interface. Note that the AIDL interface change broke obsolete keyguard stuff. That is being deleted soon anyway, so code has just been commented out of the obsolete files to make it compile. Change-Id: Ia5c451cce1703b3bc03e27a35c6b38373e944d1b
Diffstat (limited to 'core/java/com')
-rw-r--r--core/java/com/android/internal/policy/IFaceLockCallback.aidl1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/java/com/android/internal/policy/IFaceLockCallback.aidl b/core/java/com/android/internal/policy/IFaceLockCallback.aidl
index eb902fd..280e4d5 100644
--- a/core/java/com/android/internal/policy/IFaceLockCallback.aidl
+++ b/core/java/com/android/internal/policy/IFaceLockCallback.aidl
@@ -22,6 +22,5 @@ oneway interface IFaceLockCallback {
void unlock();
void cancel();
void reportFailedAttempt();
- void exposeFallback();
void pokeWakelock(int millis);
}