From 033d9eb9542d90af59f268076ff22207b1abaf56 Mon Sep 17 00:00:00 2001 From: Yixiao Luo Date: Tue, 10 May 2022 10:10:47 -0700 Subject: [PATCH] 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 --- .../tv/interactive/ITvInteractiveAppManagerCallback.aidl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media/java/android/media/tv/interactive/ITvInteractiveAppManagerCallback.aidl b/media/java/android/media/tv/interactive/ITvInteractiveAppManagerCallback.aidl index fed86dc9e0a84..2e792b3943014 100644 --- a/media/java/android/media/tv/interactive/ITvInteractiveAppManagerCallback.aidl +++ b/media/java/android/media/tv/interactive/ITvInteractiveAppManagerCallback.aidl @@ -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); -} \ No newline at end of file +}