Chromium Code Reviews| Index: Source/modules/webusb/USBOutTransferResult.idl |
| diff --git a/Source/modules/webusb/USBOutTransferResult.idl b/Source/modules/webusb/USBOutTransferResult.idl |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ed6e976a07c7feb2629f500e16fd393f04928db6 |
| --- /dev/null |
| +++ b/Source/modules/webusb/USBOutTransferResult.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 USBOutTransferResult { |
| + readonly attribute USBTransferStatus status; |
| + readonly attribute unsigned long bytesWritten; |
| +}; |