#include "third_party/blink/renderer/modules/hid/hid_connection_event.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_hid_connection_event_init.h"
#include "third_party/blink/renderer/modules/hid/hid_device.h"
namespace blink {
HIDConnectionEvent* HIDConnectionEvent::Create(
const AtomicString& type,
const HIDConnectionEventInit* initializer) { … }
HIDConnectionEvent* HIDConnectionEvent::Create(const AtomicString& type,
HIDDevice* device) { … }
HIDConnectionEvent::HIDConnectionEvent(
const AtomicString& type,
const HIDConnectionEventInit* initializer)
: … { … }
HIDConnectionEvent::HIDConnectionEvent(const AtomicString& type,
HIDDevice* device)
: … { … }
void HIDConnectionEvent::Trace(Visitor* visitor) const { … }
}