Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1108)

Unified Diff: Source/devtools/protocol.json

Issue 1044203004: [Storage] Cache storage inspection on all the frames! (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: More cleanup Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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."

Powered by Google App Engine
This is Rietveld 408576698