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

Commit c7101dbe authored by Brad Ebinger's avatar Brad Ebinger Committed by Automerger Merge Worker
Browse files

Merge "Fix un-dismissable incoming call for auto-rejected calls" am: dd27d93a am: 98da2d69

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1443535

Change-Id: Ib16541a2680990408c209264a3816ad6c0f77702
parents e5fc7e54 98da2d69
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -27,8 +27,11 @@ import com.android.ims.internal.IImsCallSession;
 * See MmTelFeature#Listener for more information.
 * {@hide}
 */
oneway interface IImsMmTelListener {
 // This interface is not considered oneway because we need to ensure that these operations are
 // processed by telephony before the control flow returns to the ImsService to perform
 // operations on the IImsCallSession.
interface IImsMmTelListener {
    void onIncomingCall(IImsCallSession c, in Bundle extras);
    void onRejectedCall(in ImsCallProfile callProfile, in ImsReasonInfo reason);
    void onVoiceMessageCountUpdate(int count);
    oneway void onVoiceMessageCountUpdate(int count);
}