Merge "Update startStreaming to return status code"

This commit is contained in:
Treehugger Robot
2017-05-10 16:46:12 +00:00
committed by Gerrit 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
* 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