blob: 5bb0eac2788de4095b0c56de017a34a61e5c7494 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/modules/peerconnection/rtc_error_event.h"
#include "third_party/blink/renderer/platform/heap/heap.h"
namespace blink {
// static
RTCErrorEvent* RTCErrorEvent::Create(const AtomicString& type,
const RTCErrorEventInit* event_init_dict) {
return MakeGarbageCollected<RTCErrorEvent>(type, event_init_dict);
}
RTCErrorEvent::RTCErrorEvent(const AtomicString& type,
const RTCErrorEventInit* event_init_dict)
: Event(type, event_init_dict), error_(event_init_dict->error()) {
DCHECK(event_init_dict);
}
RTCErrorEvent::RTCErrorEvent(const AtomicString& type, webrtc::RTCError error)
: Event(type, Bubbles::kNo, Cancelable::kNo),
error_(MakeGarbageCollected<RTCError>(error)) {}
RTCError* RTCErrorEvent::error() const {
return error_;
}
void RTCErrorEvent::Trace(Visitor* visitor) const {
visitor->Trace(error_);
Event::Trace(visitor);
}
} // namespace blink