diff options
author | Hall Liu <hallliu@google.com> | 2020-06-26 12:22:55 -0700 |
---|---|---|
committer | Hall Liu <hallliu@google.com> | 2020-06-26 13:38:50 -0700 |
commit | efe7351c7cb278d9bdcad4b962215c8f28a845a8 (patch) | |
tree | 7fcafcdffe8c449097097c4b4d037b4e0d3443f1 /telecomm | |
parent | 4f45ccd46bf0710f86782ab650bb15c251b531d9 (diff) |
Add telecom command to stop block suppression
Add a Telecom command to stop the number blocking suppression that
happens after an emergency call.
Bug: 158798240
Test: atest CtsTelecomTestCases
Change-Id: I122de1962fb6aa48a3092c2aa323dcbdcbb8f42e
Diffstat (limited to 'telecomm')
-rw-r--r-- | telecomm/java/com/android/internal/telecom/ITelecomService.aidl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/telecomm/java/com/android/internal/telecom/ITelecomService.aidl b/telecomm/java/com/android/internal/telecom/ITelecomService.aidl index 9a47ae15e64a..0965249cdad3 100644 --- a/telecomm/java/com/android/internal/telecom/ITelecomService.aidl +++ b/telecomm/java/com/android/internal/telecom/ITelecomService.aidl @@ -273,6 +273,11 @@ interface ITelecomService { boolean setDefaultDialer(in String packageName); /** + * Stop suppressing blocked numbers after a call to emergency services. Shell only. + */ + void stopBlockSuppression(); + + /** * @see TelecomServiceImpl#createManageBlockedNumbersIntent **/ Intent createManageBlockedNumbersIntent(); |