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

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

Issue 1023293004: [DevTools] Introduce Unregister/Start/Stop/Inspect buttons to ServiceWorkersView [2/2 blink] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: update service-workers-view-expected.txt 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 unified diff | Download patch
« no previous file with comments | « Source/devtools/front_end/sdk/ServiceWorkerManager.js ('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 4116 matching lines...) Expand 10 before | Expand all | Expand 10 after
4127 { "name": "message", "type": "string" } 4127 { "name": "message", "type": "string" }
4128 ], 4128 ],
4129 "handlers": ["browser"] 4129 "handlers": ["browser"]
4130 }, 4130 },
4131 { 4131 {
4132 "name": "stop", 4132 "name": "stop",
4133 "parameters": [ 4133 "parameters": [
4134 { "name": "workerId", "type": "string" } 4134 { "name": "workerId", "type": "string" }
4135 ], 4135 ],
4136 "handlers": ["browser"] 4136 "handlers": ["browser"]
4137 },
4138 {
4139 "name": "unregister",
4140 "parameters": [
4141 { "name": "scopeURL", "type": "string" }
4142 ],
4143 "handlers": ["browser"]
4144 },
4145 {
4146 "name": "startWorker",
4147 "parameters": [
4148 { "name": "scopeURL", "type": "string" }
4149 ],
4150 "handlers": ["browser"]
4151 },
4152 {
4153 "name": "stopWorker",
4154 "parameters": [
4155 { "name": "versionId", "type": "string" }
4156 ],
4157 "handlers": ["browser"]
4158 },
4159 {
4160 "name": "inspectWorker",
4161 "parameters": [
4162 { "name": "versionId", "type": "string" }
4163 ],
4164 "handlers": ["browser"]
4137 } 4165 }
4138 ], 4166 ],
4139 "events": [ 4167 "events": [
4140 { 4168 {
4141 "name": "workerCreated", 4169 "name": "workerCreated",
4142 "parameters": [ 4170 "parameters": [
4143 { "name": "workerId", "type": "string" }, 4171 { "name": "workerId", "type": "string" },
4144 { "name": "url", "type": "string" } 4172 { "name": "url", "type": "string" }
4145 ], 4173 ],
4146 "handlers": ["browser"] 4174 "handlers": ["browser"]
(...skipping 891 matching lines...) Expand 10 before | Expand all | Expand 10 after
5038 ], 5066 ],
5039 "returns": [ 5067 "returns": [
5040 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5068 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5041 ], 5069 ],
5042 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5070 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5043 "hidden": true 5071 "hidden": true
5044 } 5072 }
5045 ] 5073 ]
5046 }] 5074 }]
5047 } 5075 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sdk/ServiceWorkerManager.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698