From 69f35c8e1bc5b7bd087907d7d88a5de4cf57ba42 Mon Sep 17 00:00:00 2001 From: Shriram Ganesh Date: Thu, 11 Sep 2014 22:33:03 +0530 Subject: [PATCH] IMS: Unsol TTY notification support Code changes to support UNSOL_TTY_NOTIFICATION handling. Change-Id: I74bba5d06198e016db259ec1f7d28663d475cb92 --- .../android/ims/internal/IImsCallSessionListener.aidl | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/telephony/java/com/android/ims/internal/IImsCallSessionListener.aidl b/telephony/java/com/android/ims/internal/IImsCallSessionListener.aidl index acd1eb9d592e7..11da6e6aa547b 100644 --- a/telephony/java/com/android/ims/internal/IImsCallSessionListener.aidl +++ b/telephony/java/com/android/ims/internal/IImsCallSessionListener.aidl @@ -104,4 +104,14 @@ interface IImsCallSessionListener { in int srcAccessTech, in int targetAccessTech, in ImsReasonInfo reasonInfo); void callSessionHandoverFailed(in IImsCallSession session, in int srcAccessTech, in int targetAccessTech, in ImsReasonInfo reasonInfo); + + /** + * Notifies the TTY mode change by remote party. + * @param mode one of the following: + * - {@link com.android.internal.telephony.Phone#TTY_MODE_OFF} + * - {@link com.android.internal.telephony.Phone#TTY_MODE_FULL} + * - {@link com.android.internal.telephony.Phone#TTY_MODE_HCO} + * - {@link com.android.internal.telephony.Phone#TTY_MODE_VCO} + */ + void callSessionTtyModeReceived(in IImsCallSession session, in int mode); }