Merge "Fix un-dismissable incoming call for auto-rejected calls" into rvc-qpr-dev am: 0c52a7600f

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

Change-Id: I5c4e739f8d5edde57f815ed2aa98f8868d2c8572
This commit is contained in:
Radhika Agrawal
2020-09-30 21:54:43 +00:00
committed by Automerger Merge Worker

View File

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