| Index: Source/modules/serviceworkers/CacheStorage.idl
|
| diff --git a/Source/modules/serviceworkers/CacheStorage.idl b/Source/modules/serviceworkers/CacheStorage.idl
|
| index 815b7da70d9b106b089e0f0de912d6e7da297b01..50c4c5f1a9a7b872df506774c0d668786ffd9d62 100644
|
| --- a/Source/modules/serviceworkers/CacheStorage.idl
|
| +++ b/Source/modules/serviceworkers/CacheStorage.idl
|
| @@ -8,9 +8,8 @@
|
| Exposed=ServiceWorker,
|
| RuntimeEnabled=ServiceWorkerCache,
|
| ] interface CacheStorage {
|
| - [CallWith=ScriptState] Promise get(ScalarValueString cacheName);
|
| [CallWith=ScriptState] Promise has(ScalarValueString cacheName);
|
| - [CallWith=ScriptState, ImplementedAs=createFunction] Promise create(ScalarValueString cacheName);
|
| + [CallWith=ScriptState] Promise open(ScalarValueString cacheName);
|
| [CallWith=ScriptState, ImplementedAs=deleteFunction] Promise delete(ScalarValueString cacheName);
|
| [CallWith=ScriptState] Promise keys();
|
| // FIXME: From https://github.com/slightlyoff/ServiceWorker/issues/372 and the updated
|
|
|