Merge "Merge "Update startStreaming to return status code" am: 6476ceeaee am: a89cacebfb am: 331058a871" into oc-dev-plus-aosp

This commit is contained in:
Android Build Merger (Role)
2017-05-10 18:00:10 +00:00
committed by Android (Google) Code Review
2 changed files with 3 additions and 3 deletions

View File

@@ -54,7 +54,7 @@ interface IMbmsStreamingService
* - Streaming status will be sent via the included listener, including an initial * - Streaming status will be sent via the included listener, including an initial
* URL-change and State-change pair. * URL-change and State-change pair.
*/ */
StreamingService startStreaming(String appName, int subId, String serviceId, int startStreaming(String appName, int subId, String serviceId,
IStreamingServiceCallback listener); IStreamingServiceCallback listener);
/** /**

View File

@@ -43,9 +43,9 @@ public class MbmsStreamingServiceBase extends IMbmsStreamingService.Stub {
} }
@Override @Override
public StreamingService startStreaming(String appName, int subId, public int startStreaming(String appName, int subId,
String serviceId, IStreamingServiceCallback listener) throws RemoteException { String serviceId, IStreamingServiceCallback listener) throws RemoteException {
return null; return 0;
} }
@Override @Override