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

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

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/webusb/USBConnectionEvent.h ('k') | Source/modules/webusb/USBConnectionEvent.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webusb/USBConnectionEvent.cpp
diff --git a/Source/modules/webusb/USBConnectionEvent.cpp b/Source/modules/webusb/USBConnectionEvent.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..517c21ac07b63656a48fe2a9f231f96e78165edb
--- /dev/null
+++ b/Source/modules/webusb/USBConnectionEvent.cpp
@@ -0,0 +1,43 @@
+// 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.
+
+#include "config.h"
+#include "modules/webusb/USBConnectionEvent.h"
+
+#include "modules/webusb/USBConnectionEventInit.h"
+#include "modules/webusb/USBDevice.h"
+
+namespace blink {
+
+USBConnectionEvent* USBConnectionEvent::create(const AtomicString& type, const USBConnectionEventInit& initializer)
+{
+ return new USBConnectionEvent(type, initializer);
+}
+
+USBConnectionEvent* USBConnectionEvent::create(const AtomicString& type, USBDevice* device)
+{
+ return new USBConnectionEvent(type, device);
+}
+
+USBConnectionEvent::USBConnectionEvent(const AtomicString& type, const USBConnectionEventInit& initializer)
+ : Event(type, initializer)
+ , m_device(nullptr)
+{
+ if (initializer.hasDevice())
+ m_device = initializer.device();
+}
+
+USBConnectionEvent::USBConnectionEvent(const AtomicString& type, USBDevice* device)
+ : Event(type, false, false)
+ , m_device(device)
+{
+}
+
+DEFINE_TRACE(USBConnectionEvent)
+{
+ visitor->trace(m_device);
+ Event::trace(visitor);
+}
+
+} // namespace blink
« no previous file with comments | « Source/modules/webusb/USBConnectionEvent.h ('k') | Source/modules/webusb/USBConnectionEvent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698