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

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: 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 92bb2d92a9e9099cb327e4d55c9e51894ad32ced..baab3516a8ecc8ed3a2f8d9d9fa3085f88ad0716 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."

Powered by Google App Engine
This is Rietveld 408576698