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

Commit 594c319f authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Implement onNullBinding() in autofill service connection" into main

parents 5c435f87 d883efa9
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -117,6 +117,14 @@ final class RemoteFillService extends ServiceConnector.Impl<IAutoFillService> {
        }
    }

    @Override // from ServiceConnection
    public void onNullBinding(@NonNull ComponentName name) {
        if (sVerbose) {
            Slog.v(TAG, "onNullBinding");
        }
        unbind();
    }

    private void dispatchCancellationSignal(@Nullable ICancellationSignal signal) {
        if (signal == null) {
            return;