summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/webusb/usb_isochronous_in_transfer_packet.idl
blob: c09bdb2f1896bf643c110e80ecbcdb70b09b5610 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2016 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.

// https://wicg.github.io/webusb/#usbisochronousintransferpacket

[
    Constructor(USBTransferStatus status, optional DataView? data),
    Exposed(DedicatedWorker WebUSBOnDedicatedAndSharedWorkers, SharedWorker WebUSBOnDedicatedAndSharedWorkers, Window WebUSB)
] interface USBIsochronousInTransferPacket {
    readonly attribute USBTransferStatus status;
    readonly attribute DataView? data;
};