am 91f7af97: am 69f35c8e: IMS: Unsol TTY notification support

* commit '91f7af977a26122ddc0bcb8e264258856bad9318':
  IMS: Unsol TTY notification support
This commit is contained in:
Shriram Ganesh
2014-10-10 17:16:37 +00:00
committed by Android Git Automerger

View File

@@ -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);
}