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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: third_party/WebKit/Source/modules/webusb/USBConnectionEvent.h
diff --git a/third_party/WebKit/Source/modules/webusb/USBConnectionEvent.h b/third_party/WebKit/Source/modules/webusb/USBConnectionEvent.h
index d23f09c1ec0bd050901fec5fe6b11c90e1d1a031..286882b89d713c47bfaa40fbd371a33a323881ca 100644
--- a/third_party/WebKit/Source/modules/webusb/USBConnectionEvent.h
+++ b/third_party/WebKit/Source/modules/webusb/USBConnectionEvent.h
@@ -16,8 +16,8 @@ class USBDevice;
class USBConnectionEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<USBConnectionEvent> create(const AtomicString& type, const USBConnectionEventInit&);
- static PassRefPtrWillBeRawPtr<USBConnectionEvent> create(const AtomicString& type, USBDevice*);
+ static RawPtr<USBConnectionEvent> create(const AtomicString& type, const USBConnectionEventInit&);
+ static RawPtr<USBConnectionEvent> create(const AtomicString& type, USBDevice*);
USBConnectionEvent(const AtomicString& type, const USBConnectionEventInit&);
USBConnectionEvent(const AtomicString& type, USBDevice*);
@@ -27,7 +27,7 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- PersistentWillBeMember<USBDevice> m_device;
+ Member<USBDevice> m_device;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/modules/webusb/USB.h ('k') | third_party/WebKit/Source/modules/webusb/USBConnectionEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698