Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3388ccc8 authored by Suresh Kumar Sugguna's avatar Suresh Kumar Sugguna Committed by Ricardo Cerqueira
Browse files

IMS: Unsol TTY notification support

Code changes to support UNSOL_TTY_NOTIFICATION handling.

Change-Id: I8936b041be1de86faf32455841529d90e1cf6044
CRs-Fixed: 723155
parent bd1e1569
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -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);
}