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

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/18284606

Change-Id: Ifc2fb5d06bf5d8a4e8a02fbb87bd33e935faa677
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Yixiao Luo
2022-05-13 17:37:38 +00:00
committed by Automerger Merge Worker

View File

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