summaryrefslogtreecommitdiffstats
path: root/telecomm
diff options
context:
space:
mode:
authorSailesh Nepal <sail@google.com>2015-07-29 18:00:05 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-07-29 18:00:05 +0000
commit337637607df93491276a1285f57dd41afd219682 (patch)
tree81e9b2be1878c34ef52a333ce7638adb4d46803d /telecomm
parent9e3d8e269e1c016af28c29ca8989ba765504331d (diff)
parent6b96de8dae8be99f75c86c795672905e10fca153 (diff)
downloadframeworks_base-337637607df93491276a1285f57dd41afd219682.zip
frameworks_base-337637607df93491276a1285f57dd41afd219682.tar.gz
frameworks_base-337637607df93491276a1285f57dd41afd219682.tar.bz2
am 6b96de8d: Merge "Default permissions for sim call manager" into mnc-dev
* commit '6b96de8dae8be99f75c86c795672905e10fca153': Default permissions for sim call manager
Diffstat (limited to 'telecomm')
-rw-r--r--telecomm/java/android/telecom/TelecomManager.java20
-rw-r--r--telecomm/java/com/android/internal/telecom/ITelecomService.aidl5
2 files changed, 25 insertions, 0 deletions
diff --git a/telecomm/java/android/telecom/TelecomManager.java b/telecomm/java/android/telecom/TelecomManager.java
index a30e1c0..3b59f27 100644
--- a/telecomm/java/android/telecom/TelecomManager.java
+++ b/telecomm/java/android/telecom/TelecomManager.java
@@ -493,6 +493,26 @@ public class TelecomManager {
}
/**
+ * Returns the current SIM call manager for the specified user. Apps must be prepared for this
+ * method to return {@code null}, indicating that there currently exists no user-chosen default
+ * {@code PhoneAccount}.
+ *
+ * @return The phone account handle of the current sim call manager.
+ *
+ * @hide
+ */
+ public PhoneAccountHandle getSimCallManager(int userId) {
+ try {
+ if (isServiceConnected()) {
+ return getTelecomService().getSimCallManagerForUser(userId);
+ }
+ } catch (RemoteException e) {
+ Log.e(TAG, "Error calling ITelecomService#getSimCallManagerForUser");
+ }
+ return null;
+ }
+
+ /**
* Returns the current connection manager. Apps must be prepared for this method to return
* {@code null}, indicating that there currently exists no user-chosen default
* {@code PhoneAccount}.
diff --git a/telecomm/java/com/android/internal/telecom/ITelecomService.aidl b/telecomm/java/com/android/internal/telecom/ITelecomService.aidl
index fb0f6da..2e07759 100644
--- a/telecomm/java/com/android/internal/telecom/ITelecomService.aidl
+++ b/telecomm/java/com/android/internal/telecom/ITelecomService.aidl
@@ -93,6 +93,11 @@ interface ITelecomService {
PhoneAccountHandle getSimCallManager();
/**
+ * @see TelecomServiceImpl#getSimCallManagerForUser
+ */
+ PhoneAccountHandle getSimCallManagerForUser(int userId);
+
+ /**
* @see TelecomServiceImpl#registerPhoneAccount
*/
void registerPhoneAccount(in PhoneAccount metadata);