summaryrefslogtreecommitdiffstats
path: root/telecomm/java/com
diff options
context:
space:
mode:
authorRavindra <c_rthat@codeaurora.org>2015-09-21 14:43:05 +0530
committerLinux Build Service Account <lnxbuild@localhost>2015-10-06 03:28:59 -0600
commitd13db38a856f92670566cc96f87c87846259c575 (patch)
tree99b0c6eb59cfa49932888a10cc158e4f49e64b9a /telecomm/java/com
parentc96a60e262093e2ae4e4f31349c1864ce83a5bfb (diff)
downloadframeworks_base-d13db38a856f92670566cc96f87c87846259c575.zip
frameworks_base-d13db38a856f92670566cc96f87c87846259c575.tar.gz
frameworks_base-d13db38a856f92670566cc96f87c87846259c575.tar.bz2
MSIM: set phone account handle changes for ECall
Add interface API between Telephony to Telecomm for updating phoneAcount. Currently on multisim, Telephony(PhoneApp) picks the best possible sub for placing emergency call, after selecting the best possible sub, Telephony uses this new interface API to update the phoneAcount handle to Telecomm which inturn helps to display the proper subId on which ECall placed. Add cause codes for EMERGENCY_TEMP_FAILURE and EMERGENCY_TEMP_FAILURE Change-Id: Ic0fdc01810ccc35479a1a9447c40e38122a155a9 CRs-Fixed: 722205,778800, 780893
Diffstat (limited to 'telecomm/java/com')
-rw-r--r--telecomm/java/com/android/internal/telecom/IConnectionServiceAdapter.aidl3
1 files changed, 3 insertions, 0 deletions
diff --git a/telecomm/java/com/android/internal/telecom/IConnectionServiceAdapter.aidl b/telecomm/java/com/android/internal/telecom/IConnectionServiceAdapter.aidl
index 7647444..32c48b1 100644
--- a/telecomm/java/com/android/internal/telecom/IConnectionServiceAdapter.aidl
+++ b/telecomm/java/com/android/internal/telecom/IConnectionServiceAdapter.aidl
@@ -23,6 +23,7 @@ import android.telecom.ConnectionRequest;
import android.telecom.DisconnectCause;
import android.telecom.ParcelableConnection;
import android.telecom.ParcelableConference;
+import android.telecom.PhoneAccountHandle;
import android.telecom.StatusHints;
import com.android.internal.telecom.IVideoProvider;
@@ -86,4 +87,6 @@ oneway interface IConnectionServiceAdapter {
void addExistingConnection(String callId, in ParcelableConnection connection);
void setExtras(String callId, in Bundle extras);
+
+ void setPhoneAccountHandle(String callId, in PhoneAccountHandle pHandle);
}