| Index: Source/modules/serviceworkers/ServiceWorkerGlobalScope.idl
|
| diff --git a/Source/modules/serviceworkers/ServiceWorkerGlobalScope.idl b/Source/modules/serviceworkers/ServiceWorkerGlobalScope.idl
|
| index ea9a3e8d98bcde984a9276ccc347788d91ad4bbe..93028d57366052e7621ee49e59f675f4a582307f 100644
|
| --- a/Source/modules/serviceworkers/ServiceWorkerGlobalScope.idl
|
| +++ b/Source/modules/serviceworkers/ServiceWorkerGlobalScope.idl
|
| @@ -40,8 +40,8 @@
|
| [CallWith=ExecutionContext, Unforgeable] readonly attribute USVString scope;
|
| [CallWith=ExecutionContext, Unforgeable, RuntimeEnabled=ServiceWorkerCache] readonly attribute CacheStorage caches;
|
|
|
| - [CallWith=ScriptState] Promise fetch(DOMString request, optional Dictionary requestInitDict);
|
| - [CallWith=ScriptState] Promise fetch(Request request, optional Dictionary requestInitDict);
|
| + [CallWith=ScriptState] Promise<Response> fetch(DOMString request, optional Dictionary requestInitDict);
|
| + [CallWith=ScriptState] Promise<Response> fetch(Request request, optional Dictionary requestInitDict);
|
|
|
| [RaisesException] void close();
|
|
|
|
|