summaryrefslogtreecommitdiffstats
path: root/core/java/com
diff options
context:
space:
mode:
authorDanielle Millett <dmillett@google.com>2012-10-29 22:16:32 -0400
committerDanielle Millett <dmillett@google.com>2012-10-29 23:40:12 -0400
commit1108a2cb412b054cc9e4acc48182c46c45180c0c (patch)
tree8c7f524372eb9d8f57420b906e538e59cdfcebe4 /core/java/com
parentcfc3086b18396df03f982fb98112649dc5b5a6f2 (diff)
downloadframeworks_base-1108a2cb412b054cc9e4acc48182c46c45180c0c.zip
frameworks_base-1108a2cb412b054cc9e4acc48182c46c45180c0c.tar.gz
frameworks_base-1108a2cb412b054cc9e4acc48182c46c45180c0c.tar.bz2
Added a makeInvisible call to Face Unlock
This makes it so that the view is hidden immediately when a call to stop is made. This also changes the call in onPause to only stop and not go to the backup because we still want Face Unlock to show as the view is being dragged down. Change-Id: I66d8fc24e82dc3a0155f7d59d8ced932cb584660
Diffstat (limited to 'core/java/com')
-rw-r--r--core/java/com/android/internal/policy/IFaceLockInterface.aidl1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/java/com/android/internal/policy/IFaceLockInterface.aidl b/core/java/com/android/internal/policy/IFaceLockInterface.aidl
index 017801b..a017722 100644
--- a/core/java/com/android/internal/policy/IFaceLockInterface.aidl
+++ b/core/java/com/android/internal/policy/IFaceLockInterface.aidl
@@ -23,6 +23,7 @@ interface IFaceLockInterface {
void startUi(IBinder containingWindowToken, int x, int y, int width, int height,
boolean useLiveliness);
void stopUi();
+ void makeInvisible();
void registerCallback(IFaceLockCallback cb);
void unregisterCallback(IFaceLockCallback cb);
}