diff options
Diffstat (limited to 'telecomm/java/com/android/internal/telecom/ITelecomService.aidl')
-rw-r--r-- | telecomm/java/com/android/internal/telecom/ITelecomService.aidl | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/telecomm/java/com/android/internal/telecom/ITelecomService.aidl b/telecomm/java/com/android/internal/telecom/ITelecomService.aidl index 4fcda4d00883..24119885a119 100644 --- a/telecomm/java/com/android/internal/telecom/ITelecomService.aidl +++ b/telecomm/java/com/android/internal/telecom/ITelecomService.aidl @@ -261,6 +261,11 @@ interface ITelecomService { **/ Intent createManageBlockedNumbersIntent(); + /** + * @see TelecomServiceImpl#createLaunchEmergencyDialerIntent + */ + Intent createLaunchEmergencyDialerIntent(in String number); + /** * @see TelecomServiceImpl#isIncomingCallPermitted */ @@ -282,6 +287,11 @@ interface ITelecomService { void acceptHandover(in Uri srcAddr, int videoState, in PhoneAccountHandle destAcct); /** + * @see TelecomServiceImpl#setTestEmergencyPhoneAccountPackageNameFilter + */ + void setTestEmergencyPhoneAccountPackageNameFilter(String packageName); + + /** * @see TelecomServiceImpl#isInEmergencyCall */ boolean isInEmergencyCall(); @@ -289,7 +299,7 @@ interface ITelecomService { /** * @see TelecomServiceImpl#handleCallIntent */ - void handleCallIntent(in Intent intent); + void handleCallIntent(in Intent intent, in String callingPackageProxy); void setTestDefaultCallRedirectionApp(String packageName); @@ -302,6 +312,11 @@ interface ITelecomService { void setTestAutoModeApp(String packageName); /** + * @see TelecomServiceImpl#setSystemDialer + */ + void setSystemDialer(in ComponentName testComponentName); + + /** * @see TelecomServiceImpl#setTestDefaultDialer */ void setTestDefaultDialer(in String packageName); |