diff options
author | Nancy Chen <nancychen@google.com> | 2014-10-15 18:47:01 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-10-15 18:47:03 +0000 |
commit | 9faf13b47467916897cf5c019a3a74df871b8f65 (patch) | |
tree | 21022a0315315a97e0603bf5cb3f1a981a8f199e /telecomm/java/com/android/internal | |
parent | 09ba0da87fa56eac91da5eb2d0a20b7799df66d5 (diff) | |
parent | b0cad32c3cadd0387f6dcd82aade629e6f2f6bee (diff) | |
download | frameworks_base-9faf13b47467916897cf5c019a3a74df871b8f65.zip frameworks_base-9faf13b47467916897cf5c019a3a74df871b8f65.tar.gz frameworks_base-9faf13b47467916897cf5c019a3a74df871b8f65.tar.bz2 |
Merge "Add API method to extract subscription ID from phone account (1/3)" into lmp-sprout-dev
Diffstat (limited to 'telecomm/java/com/android/internal')
-rw-r--r-- | telecomm/java/com/android/internal/telecom/ITelecomService.aidl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/telecomm/java/com/android/internal/telecom/ITelecomService.aidl b/telecomm/java/com/android/internal/telecom/ITelecomService.aidl index f1cf885..09ee1cb 100644 --- a/telecomm/java/com/android/internal/telecom/ITelecomService.aidl +++ b/telecomm/java/com/android/internal/telecom/ITelecomService.aidl @@ -35,6 +35,16 @@ interface ITelecomService { void showInCallScreen(boolean showDialpad); /** + * @see TelecomServiceImpl#getPhoneAccountIdForSubscriptionId + */ + String getPhoneAccountIdForSubscriptionId(in long subscriptionId); + + /** + * @see TelecomServiceImpl#getSubscriptionIdForPhoneAccount + */ + long getSubscriptionIdForPhoneAccount(in PhoneAccountHandle account); + + /** * @see TelecomServiceImpl#getDefaultOutgoingPhoneAccount */ PhoneAccountHandle getDefaultOutgoingPhoneAccount(in String uriScheme); |