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

Commit 6476ceea authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Update startStreaming to return status code"

parents 9588b607 ff6c0e69
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -54,7 +54,7 @@ interface IMbmsStreamingService
     * - Streaming status will be sent via the included listener, including an initial
     *   URL-change and State-change pair.
     */
    StreamingService startStreaming(String appName, int subId, String serviceId,
    int startStreaming(String appName, int subId, String serviceId,
            IStreamingServiceCallback listener);

    /**
+2 −2
Original line number Diff line number Diff line
@@ -43,9 +43,9 @@ public class MbmsStreamingServiceBase extends IMbmsStreamingService.Stub {
    }

    @Override
    public StreamingService startStreaming(String appName, int subId,
    public int startStreaming(String appName, int subId,
            String serviceId, IStreamingServiceCallback listener) throws RemoteException {
        return null;
        return 0;
    }

    @Override