From 0eb1e402c7e612887e38dc5516f11506b11fd835 Mon Sep 17 00:00:00 2001 From: Nancy Chen Date: Thu, 21 Aug 2014 22:52:29 -0700 Subject: 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 --- .../java/com/android/internal/telecomm/ITelecommService.aidl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'telecomm/java/com') 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); -- cgit v1.1