From 5400101ec6458f0c7337a73e27a81198ae562959 Mon Sep 17 00:00:00 2001 From: Grace Jia Date: Thu, 29 Jul 2021 13:55:40 -0700 Subject: Add new API to notify CallRedirectionService timed out. Currently, CallRedirectionService is unable to know if a call failed due to timeout. Add new API to notify them and call it when Telecom wait too long to complete a call redirection request. Bug: 187346611 Test: CTS test Change-Id: I65aa0a893b3e35a412851ec969f6cdec74af8fab --- telecomm/java/com/android/internal/telecom/ICallRedirectionService.aidl | 2 ++ 1 file changed, 2 insertions(+) (limited to 'telecomm/java/com') diff --git a/telecomm/java/com/android/internal/telecom/ICallRedirectionService.aidl b/telecomm/java/com/android/internal/telecom/ICallRedirectionService.aidl index c1bc44007b0b..ce1938b81727 100644 --- a/telecomm/java/com/android/internal/telecom/ICallRedirectionService.aidl +++ b/telecomm/java/com/android/internal/telecom/ICallRedirectionService.aidl @@ -31,4 +31,6 @@ import com.android.internal.telecom.ICallRedirectionAdapter; oneway interface ICallRedirectionService { void placeCall(in ICallRedirectionAdapter adapter, in Uri handle, in PhoneAccountHandle initialPhoneAccount, boolean allowInteractiveResponse); + + void notifyTimeout(); } -- cgit v1.2.3-59-g8ed1b