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

Side by Side Diff: third_party/WebKit/Source/devtools/protocol.json

Issue 1949373002: DevTools: introduce Storage.clearDataForOrigin protocol command. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments addressed Created 4 years, 7 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 unified diff | Download patch
« no previous file with comments | « content/content_browser.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "version": { "major": "1", "minor": "1" }, 2 "version": { "major": "1", "minor": "1" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "hidden": true, 5 "hidden": true,
6 "types": [], 6 "types": [],
7 "commands": [ 7 "commands": [
8 { 8 {
9 "name": "enable", 9 "name": "enable",
10 "description": "Enables inspector domain notifications.", 10 "description": "Enables inspector domain notifications.",
(...skipping 5104 matching lines...) Expand 10 before | Expand all | Expand 10 after
5115 "parameters": [ 5115 "parameters": [
5116 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "ID of node to get accessibility node for." } 5116 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "ID of node to get accessibility node for." }
5117 ], 5117 ],
5118 "returns": [ 5118 "returns": [
5119 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5119 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5120 ], 5120 ],
5121 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5121 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5122 "hidden": true 5122 "hidden": true
5123 } 5123 }
5124 ] 5124 ]
5125 },
5126 {
5127 "domain": "Storage",
5128 "hidden": true,
5129 "types": [
5130 {
5131 "id": "StorageType",
5132 "type": "string",
5133 "enum": [
5134 "appcache",
5135 "cookies",
5136 "file_systems",
5137 "indexeddb",
5138 "local_storage",
5139 "shader_cache",
5140 "websql",
5141 "webrtc_indetity",
5142 "service_workers",
5143 "cache_storage",
5144 "all"
5145 ],
5146 "description": "Enum of possible storage types."
5147 }
5148 ],
5149 "commands": [
5150 {
5151 "name": "clearDataForOrigin",
5152 "parameters": [
5153 { "name": "origin", "type": "string", "description": "Securi ty origin." },
5154 { "name": "storageTypes", "type": "string", "description": " Comma separated origin names." }
5155 ],
5156 "description": "Clears storage for origin.",
5157 "handlers": ["browser"]
5158 }
5159 ]
5125 }] 5160 }]
5126 } 5161 }
OLDNEW
« no previous file with comments | « content/content_browser.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698