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

Commit ff6c0e69 authored by Robert Greenwalt's avatar Robert Greenwalt
Browse files

Update startStreaming to return status code

The StreamingService object will be constructed by the manager code.

Test: build
Change-Id: I53e321dbae14270d0df2c81774bf7f055baf216f
parent 52bc790f
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