summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Jeff DeCew <jeffdq@google.com> 2023-07-19 16:53:04 -0400
committer Jeff DeCew <jeffdq@google.com> 2023-07-19 16:53:04 -0400
commit7b94fa3991f509c2cc782ad4a1f7b89ee2562f1c (patch)
tree1b4e425510bf598921c21d85910c6c4b0e7786e0
parentc44cfb9c7ffb2e45243454931a9fd6594e55db09 (diff)
Make ShortcutService.onApplicationActive oneway
NOTE: RemoteInputViewController is the only caller of this method, outside of tests. Fixes: 291633239 Test: inline reply Change-Id: I2ef9ea437c5c3a8403b674a7b0c7dcb42621dd8b
-rw-r--r--core/java/android/content/pm/IShortcutService.aidl2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/content/pm/IShortcutService.aidl b/core/java/android/content/pm/IShortcutService.aidl
index c9735b05cba4..86087cb0c0ef 100644
--- a/core/java/android/content/pm/IShortcutService.aidl
+++ b/core/java/android/content/pm/IShortcutService.aidl
@@ -61,7 +61,7 @@ interface IShortcutService {
void resetThrottling(); // system only API for developer opsions
- void onApplicationActive(String packageName, int userId); // system only API for sysUI
+ oneway void onApplicationActive(String packageName, int userId); // system only API for sysUI
byte[] getBackupPayload(int user);