diff options
author | Dianne Hackborn <hackbod@google.com> | 2018-11-12 15:01:40 -0800 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2018-11-13 16:03:02 -0800 |
commit | 27b4d94a07ac00367ad12b667c983a89153537d8 (patch) | |
tree | 6e7786697585c7cbefe705c79ddc83f7eeb85109 /test-mock/api | |
parent | 59805434784886d79c6bdb8253b0aae5351be8d3 (diff) |
Implement naming of isolated service bindings.
This allows clients to run multiple instances of the same
manifest service declaration. It only works for isolated
services, to avoid too much abuse temptation. This is part
of the "Chrome site isolation" work, to allow chrome to have
many more render processes running and help it manage them.
Bug: 111434506
Test: atest CtsAppTestCases:ServiceTest
Change-Id: I22e65758678a07075ed32ed6463082ddf846d3a4
Diffstat (limited to 'test-mock/api')
-rw-r--r-- | test-mock/api/current.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test-mock/api/current.txt b/test-mock/api/current.txt index fc9b4c6831e8..f91d74a30693 100644 --- a/test-mock/api/current.txt +++ b/test-mock/api/current.txt @@ -31,6 +31,7 @@ package android.test.mock { public class MockContext extends android.content.Context { ctor public MockContext(); + method public boolean bindIsolatedService(android.content.Intent, android.content.ServiceConnection, int, java.lang.String); method public boolean bindService(android.content.Intent, android.content.ServiceConnection, int); method public int checkCallingOrSelfPermission(java.lang.String); method public int checkCallingOrSelfUriPermission(android.net.Uri, int); |