summaryrefslogtreecommitdiffstats
path: root/telecomm/java/com
diff options
context:
space:
mode:
authorIhab Awad <ihab@google.com>2014-06-30 21:17:13 -0700
committerIhab Awad <ihab@google.com>2014-07-02 12:27:13 -0700
commit9c3f18846aaa9340cc222f825c9c32ec42f9d0c9 (patch)
tree3a93eebc6ead619434fe8fbdee2a81ea4f479e79 /telecomm/java/com
parent1e1f2e89267f17723a2afc90a7e894e01fc64701 (diff)
downloadframeworks_base-9c3f18846aaa9340cc222f825c9c32ec42f9d0c9.zip
frameworks_base-9c3f18846aaa9340cc222f825c9c32ec42f9d0c9.tar.gz
frameworks_base-9c3f18846aaa9340cc222f825c9c32ec42f9d0c9.tar.bz2
Rename Telecomm "Subscription" to "Account" (1/7)
Change-Id: Ieb29f6ba9dadacb2c7e26969a47141e11a339a40 Conflicts: telecomm/java/android/telecomm/InCallCall.java
Diffstat (limited to 'telecomm/java/com')
-rw-r--r--telecomm/java/com/android/internal/telecomm/ITelecommService.aidl14
1 files changed, 7 insertions, 7 deletions
diff --git a/telecomm/java/com/android/internal/telecomm/ITelecommService.aidl b/telecomm/java/com/android/internal/telecomm/ITelecommService.aidl
index 65389df..79a17e9 100644
--- a/telecomm/java/com/android/internal/telecomm/ITelecommService.aidl
+++ b/telecomm/java/com/android/internal/telecomm/ITelecommService.aidl
@@ -17,7 +17,7 @@
package com.android.internal.telecomm;
import android.content.ComponentName;
-import android.telecomm.Subscription;
+import android.telecomm.PhoneAccount;
/**
* Interface used to interact with Telecomm. Mostly this is used by TelephonyManager for passing
@@ -33,19 +33,19 @@ interface ITelecommService {
void showCallScreen(boolean showDialpad);
/**
- * Gets a list of Subscriptions.
+ * Gets a list of accounts.
*/
- List<Subscription> getSubscriptions();
+ List<PhoneAccount> getAccounts();
/**
- * Sets the enabled state of a given Subscription.
+ * Sets the enabled state of a given account.
*/
- void setEnabled(in Subscription subscription, boolean enabled);
+ void setEnabled(in PhoneAccount account, boolean enabled);
/**
- * Sets a given Subscription as the system default.
+ * Sets a given account as the system default.
*/
- void setSystemDefault(in Subscription subscription);
+ void setSystemDefault(in PhoneAccount account);
/**
* Returns the component name of the default phone application.