summaryrefslogtreecommitdiffstats
path: root/telephony/java/com/android
diff options
context:
space:
mode:
authorEtan Cohen <etancohen@google.com>2014-09-26 22:35:02 -0700
committerPavel Zhamaitsiak <pavelz@google.com>2014-12-01 23:30:58 +0000
commitfbedecc099b49b9776260cec4738f07c17c5e972 (patch)
tree03650752f272429b0602b7f7c057e12891bbf409 /telephony/java/com/android
parent9dba10732802bf162c0098d2591aa284e55b7b5e (diff)
downloadframeworks_base-fbedecc099b49b9776260cec4738f07c17c5e972.zip
frameworks_base-fbedecc099b49b9776260cec4738f07c17c5e972.tar.gz
frameworks_base-fbedecc099b49b9776260cec4738f07c17c5e972.tar.bz2
MSIM IMS: convert to phone ID based selection.
Bug: 18576822 Change-Id: I2a756782ccdab5e4d10193c593cf89a7aa4fcda4
Diffstat (limited to 'telephony/java/com/android')
-rw-r--r--telephony/java/com/android/ims/internal/IImsService.aidl8
1 files changed, 4 insertions, 4 deletions
diff --git a/telephony/java/com/android/ims/internal/IImsService.aidl b/telephony/java/com/android/ims/internal/IImsService.aidl
index b9cee42..30c48d7 100644
--- a/telephony/java/com/android/ims/internal/IImsService.aidl
+++ b/telephony/java/com/android/ims/internal/IImsService.aidl
@@ -32,7 +32,7 @@ import android.os.Message;
* {@hide}
*/
interface IImsService {
- int open(int serviceClass, in PendingIntent incomingCallIntent,
+ int open(int phoneId, int serviceClass, in PendingIntent incomingCallIntent,
in IImsRegistrationListener listener);
void close(int serviceId);
boolean isConnected(int serviceId, int serviceType, int callType);
@@ -53,18 +53,18 @@ interface IImsService {
/**
* Config interface to get/set IMS service/capability parameters.
*/
- IImsConfig getConfigInterface();
+ IImsConfig getConfigInterface(int phoneId);
/**
* Used for turning on IMS when its in OFF state.
*/
- void turnOnIms();
+ void turnOnIms(int phoneId);
/**
* Used for turning off IMS when its in ON state.
* When IMS is OFF, device will behave as CSFB'ed.
*/
- void turnOffIms();
+ void turnOffIms(int phoneId);
/**
* ECBM interface for Emergency Callback mode mechanism.