diff options
Diffstat (limited to 'telecomm/java/com')
-rw-r--r-- | telecomm/java/com/android/internal/telecom/ITelecomService.aidl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/telecomm/java/com/android/internal/telecom/ITelecomService.aidl b/telecomm/java/com/android/internal/telecom/ITelecomService.aidl index bc76f06..aa02021 100644 --- a/telecomm/java/com/android/internal/telecom/ITelecomService.aidl +++ b/telecomm/java/com/android/internal/telecom/ITelecomService.aidl @@ -53,7 +53,8 @@ interface ITelecomService { /** * @see TelecomServiceImpl#getCallCapablePhoneAccounts */ - List<PhoneAccountHandle> getCallCapablePhoneAccounts(String callingPackage); + List<PhoneAccountHandle> getCallCapablePhoneAccounts( + boolean includeDisabledAccounts, String callingPackage); /** * @see TelecomManager#getPhoneAccountsSupportingScheme @@ -226,4 +227,9 @@ interface ITelecomService { * @see TelecomServiceImpl#placeCall */ void placeCall(in Uri handle, in Bundle extras, String callingPackage); + + /** + * @see TelecomServiceImpl#enablePhoneAccount + */ + void enablePhoneAccount(in PhoneAccountHandle accountHandle, boolean isEnabled); } |