diff options
author | Dianne Hackborn <hackbod@google.com> | 2015-07-08 17:36:37 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2015-07-09 14:06:47 -0700 |
commit | 782d49826862cbdc9d020fc9d85f8a6f64675dcb (patch) | |
tree | 2f8336faca55d4b71a70ca52d7aa2b80ca1f3b61 /api | |
parent | 2a67840c3c35a6267663e5d3ae921ee9ac614db9 (diff) | |
download | frameworks_base-782d49826862cbdc9d020fc9d85f8a6f64675dcb.zip frameworks_base-782d49826862cbdc9d020fc9d85f8a6f64675dcb.tar.gz frameworks_base-782d49826862cbdc9d020fc9d85f8a6f64675dcb.tar.bz2 |
Fix issue #22328792: Fix scalability issues in AssistStructure
We can now stream the AssistStructure across processes, avoiding
IPC size limitations for large structures. There is also a new
API that gets called on the VoiceInteractionSession if there is
a failure retrieving the assist data.
Also fix issue #22351981: Runtime restart due to ANR in system server,
getting rid of a deadlock.
And also tweak object lifecycles to try to avoid keeping around
in an app the previous AssistStructure after we request a new one.
Change-Id: Ifb136a0d31a14e56a8db6b90768d9fc65557a17f
Diffstat (limited to 'api')
-rw-r--r-- | api/current.txt | 1 | ||||
-rw-r--r-- | api/system-current.txt | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index e5b190c..0eeb68a 100644 --- a/api/current.txt +++ b/api/current.txt @@ -28792,6 +28792,7 @@ package android.service.voice { method public android.view.LayoutInflater getLayoutInflater(); method public android.app.Dialog getWindow(); method public void hide(); + method public void onAssistStructureFailure(java.lang.Throwable); method public void onBackPressed(); method public void onCancelRequest(android.service.voice.VoiceInteractionSession.Request); method public void onCloseSystemDialogs(); diff --git a/api/system-current.txt b/api/system-current.txt index 18cde08..ef03bad 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -30941,6 +30941,7 @@ package android.service.voice { method public android.view.LayoutInflater getLayoutInflater(); method public android.app.Dialog getWindow(); method public void hide(); + method public void onAssistStructureFailure(java.lang.Throwable); method public void onBackPressed(); method public void onCancelRequest(android.service.voice.VoiceInteractionSession.Request); method public void onCloseSystemDialogs(); |