diff options
author | Tim Kilbourn <tkilbourn@google.com> | 2015-06-05 16:18:09 -0700 |
---|---|---|
committer | Tim Kilbourn <tkilbourn@google.com> | 2015-06-05 23:26:39 +0000 |
commit | 0e5f110fc915a9b044eb04cd07ae7ac588eacc8f (patch) | |
tree | e671eecf7529eff338bb38d8638d82d01814e938 /core/java/android/app/ISearchManager.aidl | |
parent | 3e85c1ed0cce70164dfe6f8ffa4bf3695c4ce0ba (diff) | |
download | frameworks_base-0e5f110fc915a9b044eb04cd07ae7ac588eacc8f.zip frameworks_base-0e5f110fc915a9b044eb04cd07ae7ac588eacc8f.tar.gz frameworks_base-0e5f110fc915a9b044eb04cd07ae7ac588eacc8f.tar.bz2 |
Pass an args bundle to launchAssistAction.
In order to track the input device that was used to trigger assist, the
input device id is sent as an extra in the assist intent whenever it is
available. This is particularly useful on TVs, when an app may want to
know whether the input device has a microphone.
Bug: 21666123
Change-Id: I0f8c09e2f617606bef481bdff924cb6b9b47dd12
Diffstat (limited to 'core/java/android/app/ISearchManager.aidl')
-rw-r--r-- | core/java/android/app/ISearchManager.aidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/app/ISearchManager.aidl b/core/java/android/app/ISearchManager.aidl index 6d27910..6094012 100644 --- a/core/java/android/app/ISearchManager.aidl +++ b/core/java/android/app/ISearchManager.aidl @@ -31,5 +31,5 @@ interface ISearchManager { ComponentName getGlobalSearchActivity(); ComponentName getWebSearchActivity(); ComponentName getAssistIntent(int userHandle); - boolean launchAssistAction(String hint, int userHandle); + boolean launchAssistAction(String hint, int userHandle, in Bundle args); } |