Merge "Hide UDFPS overlay on lockout" into sc-dev am: a9723e6e6a

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15080964

Change-Id: I9e3306b9d2ff20366d2d34cb66f46076473348c9
This commit is contained in:
TreeHugger Robot
2021-06-25 00:48:32 +00:00
committed by Automerger Merge Worker

View File

@@ -178,6 +178,9 @@ class FingerprintAuthenticationClient extends AuthenticationClient<ISession> imp
} catch (RemoteException e) {
Slog.e(TAG, "Remote exception", e);
}
UdfpsHelper.hideUdfpsOverlay(getSensorId(), mUdfpsOverlayController);
mCallback.onClientFinished(this, false /* success */);
}
@Override
@@ -192,5 +195,8 @@ class FingerprintAuthenticationClient extends AuthenticationClient<ISession> imp
} catch (RemoteException e) {
Slog.e(TAG, "Remote exception", e);
}
UdfpsHelper.hideUdfpsOverlay(getSensorId(), mUdfpsOverlayController);
mCallback.onClientFinished(this, false /* success */);
}
}