diff options
author | Makoto Onuki <omakoto@google.com> | 2012-11-30 09:38:21 -0800 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2012-11-30 09:38:21 -0800 |
commit | 9cd8c711a7ed0690e268fc930e6f8d0d594c17e5 (patch) | |
tree | 31401e0cab3352891c44c05e102a78b4b5085e75 /telephony | |
parent | b46857d228edc53878e738ffd484dea1acf44baf (diff) | |
parent | 9522972108ac5ff009eef2a124cfc72e692d54b9 (diff) | |
download | frameworks_base-9cd8c711a7ed0690e268fc930e6f8d0d594c17e5.zip frameworks_base-9cd8c711a7ed0690e268fc930e6f8d0d594c17e5.tar.gz frameworks_base-9cd8c711a7ed0690e268fc930e6f8d0d594c17e5.tar.bz2 |
am 95229721: am c50ed032: Merge "Remove unused IExtendedNetworkService" into jb-mr1.1-dev
* commit '9522972108ac5ff009eef2a124cfc72e692d54b9':
Remove unused IExtendedNetworkService
Diffstat (limited to 'telephony')
-rw-r--r-- | telephony/java/com/android/internal/telephony/IExtendedNetworkService.aidl | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/telephony/java/com/android/internal/telephony/IExtendedNetworkService.aidl b/telephony/java/com/android/internal/telephony/IExtendedNetworkService.aidl deleted file mode 100644 index facdc49..0000000 --- a/telephony/java/com/android/internal/telephony/IExtendedNetworkService.aidl +++ /dev/null @@ -1,31 +0,0 @@ -package com.android.internal.telephony; - -/** - * Interface used to interact with extended MMI/USSD network service. - */ -interface IExtendedNetworkService { - /** - * Set a MMI/USSD command to ExtendedNetworkService for further process. - * This should be called when a MMI command is placed from panel. - * @param number the dialed MMI/USSD number. - */ - void setMmiString(String number); - - /** - * return the specific string which is used to prompt MMI/USSD is running - */ - CharSequence getMmiRunningText(); - - /** - * Get specific message which should be displayed on pop-up dialog. - * @param text original MMI/USSD message response from framework - * @return specific user message correspond to text. null stands for no pop-up dialog need to show. - */ - CharSequence getUserMessage(CharSequence text); - - /** - * Clear pre-set MMI/USSD command. - * This should be called when user cancel a pre-dialed MMI command. - */ - void clearMmiString(); -} |