Merge "Remove unused IExtendedNetworkService" into jb-mr1.1-dev
This commit is contained in:
@@ -218,7 +218,6 @@ LOCAL_SRC_FILES += \
|
||||
telephony/java/com/android/internal/telephony/ITelephony.aidl \
|
||||
telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl \
|
||||
telephony/java/com/android/internal/telephony/IWapPushManager.aidl \
|
||||
telephony/java/com/android/internal/telephony/IExtendedNetworkService.aidl \
|
||||
wifi/java/android/net/wifi/IWifiManager.aidl \
|
||||
wifi/java/android/net/wifi/p2p/IWifiP2pManager.aidl \
|
||||
voip/java/android/net/sip/ISipSession.aidl \
|
||||
|
||||
@@ -137,6 +137,8 @@ $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framew
|
||||
$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/ImageProcessing_intermediates)
|
||||
$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/ImageProcessing2_intermediates)
|
||||
$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/ImageProcessing_intermediates)
|
||||
$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/src/telephony/java/com/android/internal/telephony/IExtendedNetworkService.java)
|
||||
$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/src/telephony/java/com/android/internal/telephony/IExtendedNetworkService.P)
|
||||
# ************************************************
|
||||
# NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST
|
||||
# ************************************************
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user