summaryrefslogtreecommitdiff
path: root/telecomm/java/com/android/internal/telecom/IConnectionService.aidl
diff options
context:
space:
mode:
authorGrace Jia <xiaotonj@google.com>2021-01-19 14:58:01 -0800
committerGrace Jia <xiaotonj@google.com>2021-02-01 14:51:31 +0000
commit4e8dc10871bc29892ffa75dd92bb44e410f697ff (patch)
treef9d6da712b4349b0e96beecfdb9981dee1f40761 /telecomm/java/com/android/internal/telecom/IConnectionService.aidl
parent942b71b485932b19c58cfc939c1ffce2977b4084 (diff)
Add relative APIs for InCallService that can support self-managed
connections that want to expose itself. Add PhoneAccount#EXTRA_ADD_SELF_MANAGED_CALLS_TO_INCALLSERVICE and Connection#onInCallServiceTrackingChanged. Bug: 161144815 Test: CtsTelecomTestCases Change-Id: I0a42ea79a1cd46aa9df3399c4fa2e9396321778a Merged-In: I0a42ea79a1cd46aa9df3399c4fa2e9396321778a
Diffstat (limited to 'telecomm/java/com/android/internal/telecom/IConnectionService.aidl')
-rw-r--r--telecomm/java/com/android/internal/telecom/IConnectionService.aidl5
1 files changed, 5 insertions, 0 deletions
diff --git a/telecomm/java/com/android/internal/telecom/IConnectionService.aidl b/telecomm/java/com/android/internal/telecom/IConnectionService.aidl
index fb5417994b57..d5555474f248 100644
--- a/telecomm/java/com/android/internal/telecom/IConnectionService.aidl
+++ b/telecomm/java/com/android/internal/telecom/IConnectionService.aidl
@@ -136,4 +136,9 @@ oneway interface IConnectionService {
int error, in Session.Info sessionInfo);
void handoverComplete(String callId, in Session.Info sessionInfo);
+
+ void onUsingAlternativeUi(String callId, boolean isUsingAlternativeUi,
+ in Session.Info sessionInfo);
+
+ void onTrackedByNonUiService(String callId, boolean isTracked, in Session.Info sessionInfo);
}