Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 54d181db authored by Danielle Millett's avatar Danielle Millett
Browse files

Removed makeInvisible() function

This is now being done inside stopUI instead of its own separate
call since it needs to be done on the UI thread inside FaceLockService.

Change-Id: Iaf3a203f7f201ba4dde4c878f457e765f11e6c0e
parent a56395da
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -23,7 +23,6 @@ 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);
}
+0 −7
Original line number Diff line number Diff line
@@ -151,13 +151,6 @@ public class FaceUnlock implements BiometricSensorUnlock, Handler.Callback {
        }

        boolean mWasRunning = mIsRunning;
        try {
            if (mService != null) {
                mService.makeInvisible();
            }
        } catch (RemoteException e) {
            Log.e(TAG, "Caught exception making Face Unlock invisible: " + e.toString());
        }

        stopUi();