| 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
|
|
|