summaryrefslogtreecommitdiffstats
path: root/telecomm/java/com
diff options
context:
space:
mode:
authorNancy Chen <nancychen@google.com>2014-08-21 22:52:29 -0700
committerNancy Chen <nancychen@google.com>2014-08-25 10:50:44 -0700
commit0eb1e402c7e612887e38dc5516f11506b11fd835 (patch)
tree7740d620d1b385fa020f5dbdb548596e243ff6dd /telecomm/java/com
parentc793c9eb2422936cab70ff310937baf0ae551e02 (diff)
downloadframeworks_base-0eb1e402c7e612887e38dc5516f11506b11fd835.zip
frameworks_base-0eb1e402c7e612887e38dc5516f11506b11fd835.tar.gz
frameworks_base-0eb1e402c7e612887e38dc5516f11506b11fd835.tar.bz2
API review PhoneManager -> TelecommManager. Rename methods (6/6)
PhoneManager - handlePinMMI docs should explain what a Pin is and what MMI is - rename isInAPhoneCall to isInCall - rename showCallScreen to showInCallScreen - merge this class into TelecommManager, we don't need both Bug: 16960458 Change-Id: I7d573e27ed093f2ddb7849703cc62f9916835393
Diffstat (limited to 'telecomm/java/com')
-rw-r--r--telecomm/java/com/android/internal/telecomm/ITelecommService.aidl10
1 files changed, 5 insertions, 5 deletions
diff --git a/telecomm/java/com/android/internal/telecomm/ITelecommService.aidl b/telecomm/java/com/android/internal/telecomm/ITelecommService.aidl
index 3c1dea6..0ac5078 100644
--- a/telecomm/java/com/android/internal/telecomm/ITelecommService.aidl
+++ b/telecomm/java/com/android/internal/telecomm/ITelecommService.aidl
@@ -32,7 +32,7 @@ interface ITelecommService {
*
* @param showDialpad if true, make the dialpad visible initially.
*/
- void showCallScreen(boolean showDialpad);
+ void showInCallScreen(boolean showDialpad);
/**
* @see TelecommManager#getDefaultOutgoingPhoneAccount
@@ -79,9 +79,9 @@ interface ITelecommService {
void silenceRinger();
/**
- * @see TelecommManager#isInAPhoneCall
+ * @see TelecommManager#isInCall
*/
- boolean isInAPhoneCall();
+ boolean isInCall();
/**
* @see TelecomManager#isRinging
@@ -99,12 +99,12 @@ interface ITelecommService {
void acceptRingingCall();
/**
- * @see PhoneManager#cancelMissedCallsNotification
+ * @see TelecommManager#cancelMissedCallsNotification
*/
void cancelMissedCallsNotification();
/**
- * @see PhoneManager#handlePinMmi
+ * @see TelecommManager#handleMmi
*/
boolean handlePinMmi(String dialString);