blob: 47843daa9a5b99fd1c1a00789f4d6478f4a75d83 [file] [log] [blame]
// Copyright 2015 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.
// http://wicg.github.io/webusb/#endpoints
enum USBDirection {
"in",
"out"
};
enum USBEndpointType {
"bulk",
"interrupt",
"isochronous"
};
[
Constructor(USBAlternateInterface alternate, octet endpointNumber, USBDirection direction),
RaisesException=Constructor,
RuntimeEnabled=WebUSB,
] interface USBEndpoint {
readonly attribute octet endpointNumber;
readonly attribute USBDirection direction;
readonly attribute USBEndpointType type;
readonly attribute unsigned long packetSize;
};