mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1043165 - Part 1: Add TelephonyCall.disconnectedReason (webidl). r=hsinyi
This commit is contained in:
parent
4c0e8a7d06
commit
00e03f89e4
@ -31,6 +31,8 @@ interface TelephonyCall : EventTarget {
|
||||
|
||||
readonly attribute DOMError? error;
|
||||
|
||||
readonly attribute TelephonyCallDisconnectedReason? disconnectedReason;
|
||||
|
||||
readonly attribute TelephonyCallGroup? group;
|
||||
|
||||
[NewObject]
|
||||
@ -53,3 +55,70 @@ interface TelephonyCall : EventTarget {
|
||||
// Fired whenever the group attribute changes.
|
||||
attribute EventHandler ongroupchange;
|
||||
};
|
||||
|
||||
enum TelephonyCallDisconnectedReason {
|
||||
"BadNumber",
|
||||
"NoRouteToDestination",
|
||||
"ChannelUnacceptable",
|
||||
"OperatorDeterminedBarring",
|
||||
"NormalCallClearing",
|
||||
"Busy",
|
||||
"NoUserResponding",
|
||||
"UserAlertingNoAnswer",
|
||||
"CallRejected",
|
||||
"NumberChanged",
|
||||
"CallRejectedDestinationFeature",
|
||||
"PreEmption",
|
||||
"DestinationOutOfOrder",
|
||||
"InvalidNumberFormat",
|
||||
"FacilityRejected",
|
||||
"ResponseToStatusEnquiry",
|
||||
"Congestion",
|
||||
"NetworkOutOfOrder",
|
||||
"NetworkTempFailure",
|
||||
"SwitchingEquipCongestion",
|
||||
"AccessInfoDiscarded",
|
||||
"RequestedChannelNotAvailable",
|
||||
"ResourceUnavailable",
|
||||
"QosUnavailable",
|
||||
"RequestedFacilityNotSubscribed",
|
||||
"IncomingCallsBarredWithinCug",
|
||||
"BearerCapabilityNotAuthorized",
|
||||
"BearerCapabilityNotAvailable",
|
||||
"BearerNotImplemented",
|
||||
"ServiceNotAvailable",
|
||||
"IncomingCallExceeded",
|
||||
"RequestedFacilityNotImplemented",
|
||||
"UnrestrictedBearerNotAvailable",
|
||||
"ServiceNotImplemented",
|
||||
"InvalidTransactionId",
|
||||
"NotCugMember",
|
||||
"IncompatibleDestination",
|
||||
"InvalidTransitNetworkSelection",
|
||||
"SemanticallyIncorrectMessage",
|
||||
"InvalidMandatoryInfo",
|
||||
"MessageTypeNotImplemented",
|
||||
"MessageTypeIncompatibleProtocolState",
|
||||
"InfoElementNotImplemented",
|
||||
"ConditionalIe",
|
||||
"MessageIncompatibleProtocolState",
|
||||
"RecoveryOnTimerExpiry",
|
||||
"Protocol",
|
||||
"Interworking",
|
||||
"Barred",
|
||||
"FDNBlocked",
|
||||
"SubscriberUnknown",
|
||||
"DeviceNotAccepted",
|
||||
"ModifiedDial",
|
||||
"CdmaLockedUntilPowerCycle",
|
||||
"CdmaDrop",
|
||||
"CdmaIntercept",
|
||||
"CdmaReorder",
|
||||
"CdmaSoReject",
|
||||
"CdmaRetryOrder",
|
||||
"CdmaAcess",
|
||||
"CdmaPreempted",
|
||||
"CdmaNotEmergency",
|
||||
"CdmaAccessBlocked",
|
||||
"Unspecified",
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user