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

Unified Diff: Source/devtools/protocol.json

Issue 1111563006: [CacheStorage] Entry deletion and cache refresh in Inspector. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Test and comments Created 5 years, 8 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 f25c00a2908ef3a1e229f1d425b8204ba6751589..4e9532c3a55aadb2190a3b136eda2f0a93c38d75 100644
--- a/Source/devtools/protocol.json
+++ b/Source/devtools/protocol.json
@@ -1749,8 +1749,8 @@
"type": "object",
"description": "Data entry.",
"properties": [
- { "name": "request", "type": "string", "description": "JSON-stringified request object." },
- { "name": "response", "type": "string", "description": "JSON-stringified response object." }
+ { "name": "request", "type": "string", "description": "Request url spec." },
+ { "name": "response", "type": "string", "description": "Response stataus text." }
]
},
{
@@ -1797,6 +1797,15 @@
{ "name": "cacheId", "$ref": "CacheId", "description": "Id of cache for deletion." }
],
"description": "Deletes a cache."
+ },
+ {
+ "name": "deleteEntry",
+ "async": true,
+ "parameters": [
+ { "name": "cacheId", "$ref": "CacheId", "description": "Id of cache where the entry will be deleted." },
+ { "name": "request", "type": "string", "description": "URL spec of the request." }
+ ],
+ "description": "Deletes a cache entry."
}
]
},
« no previous file with comments | « Source/devtools/front_end/sdk/ServiceWorkerCacheModel.js ('k') | Source/modules/cachestorage/InspectorCacheStorageAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698