Index: Source/modules/webusb/USBInterface.idl |
diff --git a/Source/modules/webusb/USBInterface.idl b/Source/modules/webusb/USBInterface.idl |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ccaac798a59891105d560bb54eabd8a1c18ed54a |
--- /dev/null |
+++ b/Source/modules/webusb/USBInterface.idl |
@@ -0,0 +1,11 @@ |
+// 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. |
+ |
+[ |
+ GarbageCollected, |
+ RuntimeEnabled=WebUSB, |
+] interface USBInterface { |
+ readonly attribute octet interfaceNumber; |
+ readonly attribute sequence<USBAlternateInterface> alternates; |
+}; |