| Index: Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
|
| diff --git a/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h b/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
|
| index 2ef4fe10f435cc407a0968ff2ef3b155399526af..772f463aba06f5ee93de95b80cfa2833b7ab31b5 100644
|
| --- a/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
|
| +++ b/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
|
| @@ -39,6 +39,7 @@
|
| namespace blink {
|
|
|
| class CacheStorage;
|
| +class Dictionary;
|
| class FetchManager;
|
| class Request;
|
| class ScriptPromise;
|
| @@ -62,7 +63,9 @@ public:
|
| PassRefPtrWillBeRawPtr<CacheStorage> caches(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;
|
|
|