diff options
| author | 2014-06-17 13:20:19 -0400 | |
|---|---|---|
| committer | 2014-06-17 13:20:19 -0400 | |
| commit | 1fbaca86b7ff178d589aee700da21e3a6fdef63a (patch) | |
| tree | 7da2bc61c775440774d5aa9fed1b099d7ea5bba4 | |
| parent | 4af26e7c98ccfe51c6c17ab292875441c6039131 (diff) | |
Added startWithoutUi() call to Face Unlock AIDL interface.
This is being done in support of preview-less Face Unlock (b/14433919). Nothing
is calling this function yet, but it will be called from a trustlet to tell Face
Unlock to authenticate in the background.
If this is committed before the corresponding Face Unlock change, Face Unlock
will not build because it would not be implementing this function, and it must
implement all functions in the interface in order to build.
Change-Id: I4aaea78d58cc5f1f7e13cb981fb9a217cd901496
| -rw-r--r-- | core/java/com/android/internal/policy/IFaceLockInterface.aidl | 1 |
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 017801bbf886..bc1f0020f495 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 startWithoutUi(); void registerCallback(IFaceLockCallback cb); void unregisterCallback(IFaceLockCallback cb); } |