Chromium Code Reviews| 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." } |
|
pfeldman
2015/04/09 10:31:12
Now sure why fetching by origin is important, lets
|
| + ], |
| "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." }, |
|
pfeldman
2015/04/03 09:15:58
Composite ids is hard to work with for the clients
dmurph
2015/04/08 19:35:35
Just to clarify, you want me to remove the securit
pfeldman
2015/04/09 10:31:12
Yes.
|
| { "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." |