chromium/third_party/blink/renderer/modules/hid/hid_input_report_event.cc

// Copyright 2019 The Chromium Authors
// 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/hid/hid_input_report_event.h"

#include "third_party/blink/renderer/core/typed_arrays/dom_array_buffer.h"
#include "third_party/blink/renderer/core/typed_arrays/dom_data_view.h"
#include "third_party/blink/renderer/modules/hid/hid_device.h"

namespace blink {

HIDInputReportEvent::HIDInputReportEvent(const AtomicString& type,
                                         HIDDevice* device,
                                         uint8_t report_id,
                                         const Vector<uint8_t>& data)
    :{}

HIDInputReportEvent::~HIDInputReportEvent() = default;

const AtomicString& HIDInputReportEvent::InterfaceName() const {}

void HIDInputReportEvent::Trace(Visitor* visitor) const {}

}  // namespace blink