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

[
    Constructor(sequence<USBIsochronousInTransferPacket> packets, optional DataView? data),
    Exposed(DedicatedWorker WebUSBOnDedicatedWorkers, Window WebUSB),
    SecureContext
] interface USBIsochronousInTransferResult {
    readonly attribute DataView? data;
    readonly attribute FrozenArray<USBIsochronousInTransferPacket> packets;
};