| Index: third_party/WebKit/Source/modules/serviceworkers/ExtendableEvent.h
|
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/ExtendableEvent.h b/third_party/WebKit/Source/modules/serviceworkers/ExtendableEvent.h
|
| index 63b0078578bd997b3349757380937ed6a58fe8ee..45b212fdec94adc4dceea8f36344b74ee08726b7 100644
|
| --- a/third_party/WebKit/Source/modules/serviceworkers/ExtendableEvent.h
|
| +++ b/third_party/WebKit/Source/modules/serviceworkers/ExtendableEvent.h
|
| @@ -43,9 +43,9 @@ class WaitUntilObserver;
|
| class MODULES_EXPORT ExtendableEvent : public Event {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PassRefPtrWillBeRawPtr<ExtendableEvent> create();
|
| - static PassRefPtrWillBeRawPtr<ExtendableEvent> create(const AtomicString& type, const ExtendableEventInit&);
|
| - static PassRefPtrWillBeRawPtr<ExtendableEvent> create(const AtomicString& type, const ExtendableEventInit&, WaitUntilObserver*);
|
| + static RawPtr<ExtendableEvent> create();
|
| + static RawPtr<ExtendableEvent> create(const AtomicString& type, const ExtendableEventInit&);
|
| + static RawPtr<ExtendableEvent> create(const AtomicString& type, const ExtendableEventInit&, WaitUntilObserver*);
|
|
|
| ~ExtendableEvent() override;
|
|
|
| @@ -59,7 +59,7 @@ protected:
|
| ExtendableEvent(const AtomicString& type, const ExtendableEventInit&);
|
| ExtendableEvent(const AtomicString& type, const ExtendableEventInit&, WaitUntilObserver*);
|
|
|
| - PersistentWillBeMember<WaitUntilObserver> m_observer;
|
| + Member<WaitUntilObserver> m_observer;
|
| };
|
|
|
| } // namespace blink
|
|
|