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

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

Merge "Move ProtoLog's configuration service registerClient binder call onto...

Merge "Move ProtoLog's configuration service registerClient binder call onto background thread" into main
parents b109c170 037d6e9f
Loading
Loading
Loading
Loading
+13 −11
Original line number Diff line number Diff line
@@ -160,6 +160,7 @@ public abstract class PerfettoProtoLogImpl extends IProtoLogClient.Stub implemen
        Objects.requireNonNull(mConfigurationService,
                "A null ProtoLog Configuration Service was provided!");

        mBackgroundLoggingService.execute(() -> {
            try {
                var args = createConfigurationServiceRegisterClientArgs();

@@ -173,6 +174,7 @@ public abstract class PerfettoProtoLogImpl extends IProtoLogClient.Stub implemen
            } catch (RemoteException e) {
                throw new RuntimeException("Failed to register ProtoLog client");
            }
        });
    }

    /**