summaryrefslogtreecommitdiffstats
path: root/telephony/java
diff options
context:
space:
mode:
authorMakoto Onuki <omakoto@google.com>2012-11-29 11:05:42 -0800
committerMakoto Onuki <omakoto@google.com>2012-11-29 12:52:51 -0800
commit1b86d75d312996133bc0c74fcb1f2c9f2a83fba0 (patch)
tree2ca0db119fb2d3644a919ac66642cba8f775a71f /telephony/java
parent71175f727bc1e094e72a410aca62392badffbf11 (diff)
downloadframeworks_base-1b86d75d312996133bc0c74fcb1f2c9f2a83fba0.zip
frameworks_base-1b86d75d312996133bc0c74fcb1f2c9f2a83fba0.tar.gz
frameworks_base-1b86d75d312996133bc0c74fcb1f2c9f2a83fba0.tar.bz2
Remove unused IExtendedNetworkService
It was used in the cupcake era for docomo. Is not used anymore. Bug 7633569 Change-Id: I2ec826fc9a70d261a340957a937ed4c9f8e67c5c
Diffstat (limited to 'telephony/java')
-rw-r--r--telephony/java/com/android/internal/telephony/IExtendedNetworkService.aidl31
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();
-}