!13056 Add event of mute and speaker for call.CallAbilityEventId

Merge pull request !13056 from panlulu/master
This commit is contained in:
openharmony_ci 2024-08-03 13:03:53 +00:00 committed by Gitee
commit 224198957f
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -4001,6 +4001,42 @@ declare namespace call {
* @since 12
*/
EVENT_SHOW_FLOAT_WINDOW,
/**
* Indicates voip call muted.
*
* @syscap SystemCapability.Telephony.CallManager
* @systemapi Hide this for inner system use.
* @since 12
*/
EVENT_CALL_MUTED = 7,
/**
* Indicates voip call unmuted.
*
* @syscap SystemCapability.Telephony.CallManager
* @systemapi Hide this for inner system use.
* @since 12
*/
EVENT_CALL_UNMUTED = 8,
/**
* Indicates voip call speaker on.
*
* @syscap SystemCapability.Telephony.CallManager
* @systemapi Hide this for inner system use.
* @since 12
*/
EVENT_CALL_SPEAKER_ON = 9,
/**
* Indicates voip call speaker off.
*
* @syscap SystemCapability.Telephony.CallManager
* @systemapi Hide this for inner system use.
* @since 12
*/
EVENT_CALL_SPEAKER_OFF = 10,
}
/**