diff options
author | Nancy Chen <nancychen@google.com> | 2014-10-29 18:22:11 -0700 |
---|---|---|
committer | Nancy Chen <nancychen@google.com> | 2014-11-03 11:11:56 -0800 |
commit | b2299c13037d0f7fc5276ff2b21c53cb20c054c5 (patch) | |
tree | d2f4311a63b725d604d2eceecb74d518213681a3 /telecomm/java/com/android/internal | |
parent | af0a6ad8ab29fea9b7b164168d4d080fe010e83a (diff) | |
download | frameworks_base-b2299c13037d0f7fc5276ff2b21c53cb20c054c5.zip frameworks_base-b2299c13037d0f7fc5276ff2b21c53cb20c054c5.tar.gz frameworks_base-b2299c13037d0f7fc5276ff2b21c53cb20c054c5.tar.bz2 |
Adn queries for multi-SIM. (2/3)
Define a method in Telecom to take in a subscription account and return
the URI for an ADN query for that account.
Bug: 17917937
Change-Id: Ic50a4add7fe44a5164271dc9c9e5a58e45e72336
Diffstat (limited to 'telecomm/java/com/android/internal')
-rw-r--r-- | telecomm/java/com/android/internal/telecom/ITelecomService.aidl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/telecomm/java/com/android/internal/telecom/ITelecomService.aidl b/telecomm/java/com/android/internal/telecom/ITelecomService.aidl index fd47213..cbd9d69 100644 --- a/telecomm/java/com/android/internal/telecom/ITelecomService.aidl +++ b/telecomm/java/com/android/internal/telecom/ITelecomService.aidl @@ -18,6 +18,7 @@ package com.android.internal.telecom; import android.content.ComponentName; import android.telecom.PhoneAccountHandle; +import android.net.Uri; import android.os.Bundle; import android.telecom.PhoneAccount; @@ -174,6 +175,11 @@ interface ITelecomService { boolean handlePinMmiForPhoneAccount(in PhoneAccountHandle accountHandle, String dialString); /** + * @see TelecomServiceImpl#getAdnUriForPhoneAccount + */ + Uri getAdnUriForPhoneAccount(in PhoneAccountHandle accountHandle); + + /** * @see TelecomServiceImpl#isTtySupported */ boolean isTtySupported(); |