From 1fbaca86b7ff178d589aee700da21e3a6fdef63a Mon Sep 17 00:00:00 2001 From: Brian Colonna Date: Tue, 17 Jun 2014 13:20:19 -0400 Subject: [PATCH] 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 --- core/java/com/android/internal/policy/IFaceLockInterface.aidl | 1 + 1 file changed, 1 insertion(+) diff --git a/core/java/com/android/internal/policy/IFaceLockInterface.aidl b/core/java/com/android/internal/policy/IFaceLockInterface.aidl index 017801bbf8869..bc1f0020f495e 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); }