summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Yisroel Forta <yforta@google.com> 2024-12-26 14:48:07 +0000
committer Yisroel Forta <yforta@google.com> 2024-12-26 20:28:35 +0000
commitcfb4c92a49e749e9cd2acfefb96ba8c21dc88545 (patch)
tree19d8c054cd642b4d8bff712de8a7a9c5a1371e36
parent8e6fa6d67a3a2c9af226143e7bd6474ceb8ee4f8 (diff)
Make start info callback binder oneway
This should be oneway as it's calling into an application. Test: presubmit Bug 385093164 Flag: EXEMPT - infeasible Change-Id: I78ec02b9239e8d615f40732c06c0dcc4033e847e
-rw-r--r--core/java/android/app/IApplicationStartInfoCompleteListener.aidl2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/app/IApplicationStartInfoCompleteListener.aidl b/core/java/android/app/IApplicationStartInfoCompleteListener.aidl
index 0f0d9198234f..f7e5f18c6170 100644
--- a/core/java/android/app/IApplicationStartInfoCompleteListener.aidl
+++ b/core/java/android/app/IApplicationStartInfoCompleteListener.aidl
@@ -25,6 +25,6 @@ import android.app.ApplicationStartInfo;
*
* @hide
*/
-interface IApplicationStartInfoCompleteListener {
+oneway interface IApplicationStartInfoCompleteListener {
void onApplicationStartInfoComplete(in ApplicationStartInfo applicationStartInfo);
}