| Index: third_party/WebKit/Source/modules/serviceworkers/ForeignFetchEvent.h
|
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/ForeignFetchEvent.h b/third_party/WebKit/Source/modules/serviceworkers/ForeignFetchEvent.h
|
| index d8c6b81f80a026a65d21153753168502b8220427..257bc58b0b31a3f06a5fb12a4efd819ddcf75cd1 100644
|
| --- a/third_party/WebKit/Source/modules/serviceworkers/ForeignFetchEvent.h
|
| +++ b/third_party/WebKit/Source/modules/serviceworkers/ForeignFetchEvent.h
|
| @@ -26,8 +26,8 @@ class MODULES_EXPORT ForeignFetchEvent final : public ExtendableEvent {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| static ForeignFetchEvent* create();
|
| - static ForeignFetchEvent* create(const AtomicString& type, const ForeignFetchEventInit&);
|
| - static ForeignFetchEvent* create(const AtomicString& type, const ForeignFetchEventInit&, ForeignFetchRespondWithObserver*);
|
| + static ForeignFetchEvent* create(ScriptState*, const AtomicString& type, const ForeignFetchEventInit&);
|
| + static ForeignFetchEvent* create(ScriptState*, const AtomicString& type, const ForeignFetchEventInit&, ForeignFetchRespondWithObserver*);
|
|
|
| Request* request() const;
|
| String origin() const;
|
| @@ -40,7 +40,7 @@ public:
|
|
|
| protected:
|
| ForeignFetchEvent();
|
| - ForeignFetchEvent(const AtomicString& type, const ForeignFetchEventInit&, ForeignFetchRespondWithObserver*);
|
| + ForeignFetchEvent(ScriptState*, const AtomicString& type, const ForeignFetchEventInit&, ForeignFetchRespondWithObserver*);
|
|
|
| private:
|
| Member<ForeignFetchRespondWithObserver> m_observer;
|
|
|