| Index: Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
|
| diff --git a/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h b/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
|
| index 6151d465775b96a651174e6b51e5a251ba91ac00..0844bed3a7687fa952ecd1d482c055de11d6c86e 100644
|
| --- a/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
|
| +++ b/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
|
| @@ -36,6 +36,7 @@
|
|
|
| namespace blink {
|
|
|
| +class Dictionary;
|
| class FetchManager;
|
| class Request;
|
| class ScriptPromise;
|
| @@ -56,7 +57,9 @@ public:
|
| PassRefPtrWillBeRawPtr<ServiceWorkerClients> clients();
|
| String scope(ExecutionContext*);
|
| ScriptPromise fetch(ScriptState*, Request*);
|
| + ScriptPromise fetch(ScriptState*, Request*, const Dictionary&);
|
| ScriptPromise fetch(ScriptState*, const String&);
|
| + ScriptPromise fetch(ScriptState*, const String&, const Dictionary&);
|
|
|
| // EventTarget
|
| virtual const AtomicString& interfaceName() const OVERRIDE;
|
|
|