| Index: Source/devtools/protocol.json
|
| diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json
|
| index 4863b3e55416d2bf69f58582a12d5b5f14233229..620bc12ae3336aac84909bd851b90f4ba75cdf5b 100644
|
| --- a/Source/devtools/protocol.json
|
| +++ b/Source/devtools/protocol.json
|
| @@ -1681,7 +1681,7 @@
|
| ]
|
| },
|
| {
|
| - "domain": "ServiceWorkerCache",
|
| + "domain": "CacheStorage",
|
| "hidden": true,
|
| "types": [
|
| {
|
| @@ -1698,6 +1698,9 @@
|
| {
|
| "name": "requestCacheNames",
|
| "async": true,
|
| + "parameters": [
|
| + { "name": "securityOrigin", "type": "string", "description": "Security origin." }
|
| + ],
|
| "returns": [
|
| { "name": "cacheNames", "type": "array", "items": { "type": "string" }, "description": "Cache names for origin." }
|
| ],
|
| @@ -1707,6 +1710,7 @@
|
| "name": "requestEntries",
|
| "async": true,
|
| "parameters": [
|
| + { "name": "securityOrigin", "type": "string", "description": "Security origin." },
|
| { "name": "cacheName", "type": "string", "description": "Cache name." },
|
| { "name": "skipCount", "type": "integer", "description": "Number of records to skip." },
|
| { "name": "pageSize", "type": "integer", "description": "Number of records to fetch." }
|
| @@ -1721,6 +1725,7 @@
|
| "name": "deleteCache",
|
| "async": true,
|
| "parameters": [
|
| + { "name": "securityOrigin", "type": "string", "description": "Security origin." },
|
| { "name": "cacheName", "type": "string", "description": "Cache name." }
|
| ],
|
| "description": "Deletes a cache."
|
|
|