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

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: set-upstream 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
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..f4bb8fab58c47aa8105d93e0bad23df18bdb8b68
--- /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 interfaceIndex, ExceptionState&);
+
+ USBInterface(const USBConfiguration*, size_t interfaceIndex);
+
+ const WebUSBDeviceInfo::Interface& info() const;
+
+ uint8_t interfaceNumber() const;
+
+ DECLARE_TRACE();
+
+private:
+ Member<const USBConfiguration> m_configuration;
+ size_t m_interfaceIndex;
+};
+
+} // namespace blink
+
+#endif // USBInterface_h

Powered by Google App Engine
This is Rietveld 408576698