Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2699)

Unified Diff: Source/modules/webusb/USBInterface.h

Issue 1252913014: WebUSB bindings part 3 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: update expeced interface listing Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/webusb/USBDevice.idl ('k') | Source/modules/webusb/USBInterface.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webusb/USBInterface.h
diff --git a/Source/modules/webusb/USBInterface.h b/Source/modules/webusb/USBInterface.h
new file mode 100644
index 0000000000000000000000000000000000000000..88aa4e2392a5f58eb7d8551b9d355b3a2c75269d
--- /dev/null
+++ b/Source/modules/webusb/USBInterface.h
@@ -0,0 +1,40 @@
+// 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.
+
+#ifndef USBInterface_h
+#define USBInterface_h
+
+#include "bindings/core/v8/ScriptWrappable.h"
+#include "platform/heap/Heap.h"
+#include "public/platform/modules/webusb/WebUSBDeviceInfo.h"
+
+namespace blink {
+
+class ExceptionState;
+class USBConfiguration;
+
+class USBInterface
+ : public GarbageCollected<USBInterface>
+ , public ScriptWrappable {
+ DEFINE_WRAPPERTYPEINFO();
+public:
+ static USBInterface* create(const USBConfiguration*, size_t interfaceIndex);
+ static USBInterface* create(const USBConfiguration*, size_t interfaceNumber, ExceptionState&);
+
+ USBInterface(const USBConfiguration*, size_t interfaceIndex);
+
+ const WebUSBDeviceInfo::Interface& info() const;
+
+ uint8_t interfaceNumber() const;
+
+ DECLARE_TRACE();
+
+private:
+ Member<const USBConfiguration> m_configuration;
+ const size_t m_interfaceIndex;
+};
+
+} // namespace blink
+
+#endif // USBInterface_h
« no previous file with comments | « Source/modules/webusb/USBDevice.idl ('k') | Source/modules/webusb/USBInterface.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698