Merge "TIAS:The oneway flag add in ITvInteractiveAppManagerCallback.aidl" into tm-dev

This commit is contained in:
Yixiao Luo
2022-05-13 17:32:44 +00:00
committed by Android (Google) Code Review

View File

@@ -22,10 +22,10 @@ import android.media.tv.interactive.TvInteractiveAppServiceInfo;
* Interface to receive callbacks from ITvInteractiveAppManager regardless of sessions. * Interface to receive callbacks from ITvInteractiveAppManager regardless of sessions.
* @hide * @hide
*/ */
interface ITvInteractiveAppManagerCallback { oneway interface ITvInteractiveAppManagerCallback {
void onInteractiveAppServiceAdded(in String iAppServiceId); void onInteractiveAppServiceAdded(in String iAppServiceId);
void onInteractiveAppServiceRemoved(in String iAppServiceId); void onInteractiveAppServiceRemoved(in String iAppServiceId);
void onInteractiveAppServiceUpdated(in String iAppServiceId); void onInteractiveAppServiceUpdated(in String iAppServiceId);
void onTvInteractiveAppServiceInfoUpdated(in TvInteractiveAppServiceInfo tvIAppInfo); void onTvInteractiveAppServiceInfoUpdated(in TvInteractiveAppServiceInfo tvIAppInfo);
void onStateChanged(in String iAppServiceId, int type, int state, int err); void onStateChanged(in String iAppServiceId, int type, int state, int err);
} }