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

Commit 688ae17c authored by Robert Greenwalt's avatar Robert Greenwalt Committed by android-build-merger
Browse files

Merge "Update startStreaming to return status code" am: 6476ceea am: a89caceb

am: 331058a8

Change-Id: Ie2bc9f47e7774a838829720379fc5865e71d2f0f
parents a5b8380b 331058a8
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