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

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

Issue 1307483002: Add USBConnectionEvent to webusb module. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@usb_events
Patch Set: Update LayoutTests. 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/modules.gypi ('k') | Source/modules/webusb/USBConnectionEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webusb/USBConnectionEvent.h
diff --git a/Source/modules/webusb/USBConnectionEvent.h b/Source/modules/webusb/USBConnectionEvent.h
new file mode 100644
index 0000000000000000000000000000000000000000..ee8b24057875bed76e408cfd9e1735895955b348
--- /dev/null
+++ b/Source/modules/webusb/USBConnectionEvent.h
@@ -0,0 +1,35 @@
+// 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 USBConnectionEvent_h
+#define USBConnectionEvent_h
+
+#include "modules/EventModules.h"
+#include "platform/heap/Handle.h"
+
+namespace blink {
+
+class USBConnectionEventInit;
+class USBDevice;
+
+class USBConnectionEvent final : public Event {
+ DEFINE_WRAPPERTYPEINFO();
+public:
+ static USBConnectionEvent* create(const AtomicString& type, const USBConnectionEventInit&);
+ static USBConnectionEvent* create(const AtomicString& type, USBDevice*);
+
+ USBConnectionEvent(const AtomicString& type, const USBConnectionEventInit&);
+ USBConnectionEvent(const AtomicString& type, USBDevice*);
+
+ USBDevice* device() const { return m_device; }
+
+ DECLARE_VIRTUAL_TRACE();
+
+private:
+ PersistentWillBeMember<USBDevice> m_device;
+};
+
+} // namespace blink
+
+#endif // USBConnectionEvent_h
« no previous file with comments | « Source/modules/modules.gypi ('k') | Source/modules/webusb/USBConnectionEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698