diff options
author | Suresh Koleti <skolet@codeaurora.org> | 2016-02-26 17:53:57 +0530 |
---|---|---|
committer | Steve Kondik <steve@cyngn.com> | 2016-05-21 16:24:14 -0700 |
commit | 9a4f1624059a1074aa170c28f9410fce6b2a65de (patch) | |
tree | 8349b63b6dbd4cadd868fe5bc352dbf93496b4f0 /telephony/java | |
parent | 5a9abe4a1647a8397431991662d6ef90b7454c56 (diff) | |
download | frameworks_base-9a4f1624059a1074aa170c28f9410fce6b2a65de.zip frameworks_base-9a4f1624059a1074aa170c28f9410fce6b2a65de.tar.gz frameworks_base-9a4f1624059a1074aa170c28f9410fce6b2a65de.tar.bz2 |
IMS: Add support of notifyPreciseCallState for multi sim
Extend notifyPreciseCallState for multi SIM.
Change-Id: I52adcd55462d6ceae5defacbbe2cb057f4484099
CRs-Fixed: 957251
Diffstat (limited to 'telephony/java')
-rw-r--r-- | telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl b/telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl index 76b69ce..ecb7dfe 100644 --- a/telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl @@ -61,6 +61,8 @@ interface ITelephonyRegistry { void notifyCellInfo(in List<CellInfo> cellInfo); void notifyPreciseCallState(int ringingCallState, int foregroundCallState, int backgroundCallState); + void notifyPreciseCallStateForSubscriber(int subId, int ringingCallState, + int foregroundCallState, int backgroundCallState); void notifyDisconnectCause(int disconnectCause, int preciseDisconnectCause); void notifyPreciseDataConnectionFailed(String reason, String apnType, String apn, String failCause); |