#include "third_party/blink/renderer/modules/peerconnection/rtc_peer_connection_ice_error_event.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_rtc_peer_connection_ice_error_event_init.h"
#include "third_party/blink/renderer/core/event_type_names.h"
namespace blink {
RTCPeerConnectionIceErrorEvent* RTCPeerConnectionIceErrorEvent::Create(
const String& address,
std::optional<uint16_t> port,
const String& host_candidate,
const String& url,
int error_code,
const String& txt) { … }
RTCPeerConnectionIceErrorEvent* RTCPeerConnectionIceErrorEvent::Create(
const AtomicString& type,
const RTCPeerConnectionIceErrorEventInit* initializer) { … }
RTCPeerConnectionIceErrorEvent::RTCPeerConnectionIceErrorEvent(
const String& address,
std::optional<uint16_t> port,
const String& host_candidate,
const String& url,
uint16_t error_code,
const String& error_text)
: … { … }
RTCPeerConnectionIceErrorEvent::RTCPeerConnectionIceErrorEvent(
const AtomicString& type,
const RTCPeerConnectionIceErrorEventInit* initializer)
: … { … }
RTCPeerConnectionIceErrorEvent::~RTCPeerConnectionIceErrorEvent() = default;
String RTCPeerConnectionIceErrorEvent::address() const { … }
std::optional<uint16_t> RTCPeerConnectionIceErrorEvent::port() const { … }
String RTCPeerConnectionIceErrorEvent::hostCandidate() const { … }
String RTCPeerConnectionIceErrorEvent::url() const { … }
uint16_t RTCPeerConnectionIceErrorEvent::errorCode() const { … }
String RTCPeerConnectionIceErrorEvent::errorText() const { … }
const AtomicString& RTCPeerConnectionIceErrorEvent::InterfaceName() const { … }
void RTCPeerConnectionIceErrorEvent::Trace(Visitor* visitor) const { … }
}