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

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

Issue 1340523004: Implement USB connection events through the WebUSB client interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Change Member back to PersistentWillBeMember. Created 5 years, 3 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/USB.cpp ('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
index ee8b24057875bed76e408cfd9e1735895955b348..d23f09c1ec0bd050901fec5fe6b11c90e1d1a031 100644
--- a/Source/modules/webusb/USBConnectionEvent.h
+++ b/Source/modules/webusb/USBConnectionEvent.h
@@ -16,8 +16,8 @@ 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*);
+ static PassRefPtrWillBeRawPtr<USBConnectionEvent> create(const AtomicString& type, const USBConnectionEventInit&);
+ static PassRefPtrWillBeRawPtr<USBConnectionEvent> create(const AtomicString& type, USBDevice*);
USBConnectionEvent(const AtomicString& type, const USBConnectionEventInit&);
USBConnectionEvent(const AtomicString& type, USBDevice*);
« no previous file with comments | « Source/modules/webusb/USB.cpp ('k') | Source/modules/webusb/USBConnectionEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698