TIAS:The oneway flag add in ITvInteractiveAppManagerCallback.aidl

Cherry Pick from
https://partner-android-review.googlesource.com/c/platform/frameworks/base/+/2211650/

Bug: 231539756
Test: CtsTvTestCases
Change-Id: I0ea1c5f207617de0e5ae1ea91f4b756240d92371
This commit is contained in:
Yixiao Luo
2022-05-10 10:10:47 -07:00
parent 5547ff26d0
commit 033d9eb954

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);
}
}