| Index: third_party/WebKit/Source/modules/navigatorconnect/ServicePortConnectEvent.h
|
| diff --git a/third_party/WebKit/Source/modules/navigatorconnect/ServicePortConnectEvent.h b/third_party/WebKit/Source/modules/navigatorconnect/ServicePortConnectEvent.h
|
| index a687b6751b5e6e04ea6c0ac6be35e28afb0b0eeb..529b25f4fe34d92e895d83a70592cf28da87a3fc 100644
|
| --- a/third_party/WebKit/Source/modules/navigatorconnect/ServicePortConnectEvent.h
|
| +++ b/third_party/WebKit/Source/modules/navigatorconnect/ServicePortConnectEvent.h
|
| @@ -22,9 +22,9 @@ class ServicePortConnectEventInit;
|
| class MODULES_EXPORT ServicePortConnectEvent final : public ExtendableEvent {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PassRefPtrWillBeRawPtr<ServicePortConnectEvent> create();
|
| - static PassRefPtrWillBeRawPtr<ServicePortConnectEvent> create(const AtomicString& type, const ServicePortConnectEventInit&);
|
| - static PassRefPtrWillBeRawPtr<ServicePortConnectEvent> create(const AtomicString& type, const ServicePortConnectEventInit&, AcceptConnectionObserver*);
|
| + static RawPtr<ServicePortConnectEvent> create();
|
| + static RawPtr<ServicePortConnectEvent> create(const AtomicString& type, const ServicePortConnectEventInit&);
|
| + static RawPtr<ServicePortConnectEvent> create(const AtomicString& type, const ServicePortConnectEventInit&, AcceptConnectionObserver*);
|
|
|
| // ServicePortConnectEvent.idl
|
| String targetURL() const { return m_targetURL; }
|
| @@ -40,7 +40,7 @@ protected:
|
| ServicePortConnectEvent(const AtomicString& type, const ServicePortConnectEventInit&, AcceptConnectionObserver*);
|
|
|
| private:
|
| - PersistentWillBeMember<AcceptConnectionObserver> m_observer;
|
| + Member<AcceptConnectionObserver> m_observer;
|
| String m_targetURL;
|
| String m_origin;
|
| };
|
|
|