Merge "Update startStreaming to return status code" am: 6476ceeaee

am: a89cacebfb

Change-Id: Ief49d5e046bc9a3396f16ec81a2196a2c3b9557b
This commit is contained in:
Robert Greenwalt
2017-05-10 17:35:34 +00:00
committed by android-build-merger
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
* URL-change and State-change pair.
*/
StreamingService startStreaming(String appName, int subId, String serviceId,
int startStreaming(String appName, int subId, String serviceId,
IStreamingServiceCallback listener);
/**

View File

@@ -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