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

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

Issue 1951853004: DevTools: allow devtools to skipWaiting service workers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/browser/service_worker/service_worker_version.h ('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 4279 matching lines...) Expand 10 before | Expand all | Expand 10 after
4290 "handlers": ["browser"] 4290 "handlers": ["browser"]
4291 }, 4291 },
4292 { 4292 {
4293 "name": "startWorker", 4293 "name": "startWorker",
4294 "parameters": [ 4294 "parameters": [
4295 { "name": "scopeURL", "type": "string" } 4295 { "name": "scopeURL", "type": "string" }
4296 ], 4296 ],
4297 "handlers": ["browser"] 4297 "handlers": ["browser"]
4298 }, 4298 },
4299 { 4299 {
4300 "name": "skipWaiting",
4301 "parameters": [
4302 { "name": "scopeURL", "type": "string" }
4303 ],
4304 "handlers": ["browser"]
4305 },
4306 {
4300 "name": "stopWorker", 4307 "name": "stopWorker",
4301 "parameters": [ 4308 "parameters": [
4302 { "name": "versionId", "type": "string" } 4309 { "name": "versionId", "type": "string" }
4303 ], 4310 ],
4304 "handlers": ["browser"] 4311 "handlers": ["browser"]
4305 }, 4312 },
4306 { 4313 {
4307 "name": "inspectWorker", 4314 "name": "inspectWorker",
4308 "parameters": [ 4315 "parameters": [
4309 { "name": "versionId", "type": "string" } 4316 { "name": "versionId", "type": "string" }
(...skipping 800 matching lines...) Expand 10 before | Expand all | Expand 10 after
5110 ], 5117 ],
5111 "returns": [ 5118 "returns": [
5112 { "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 }
5113 ], 5120 ],
5114 "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.",
5115 "hidden": true 5122 "hidden": true
5116 } 5123 }
5117 ] 5124 ]
5118 }] 5125 }]
5119 } 5126 }
OLDNEW
« no previous file with comments | « content/browser/service_worker/service_worker_version.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698