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

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

Issue 1100403004: Add skipWaiting checkbox to ServiceWorkersView in DevTools [2/2 blink] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use annotated named function Created 5 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 | « 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 4208 matching lines...) Expand 10 before | Expand all | Expand 10 after
4219 "handlers": ["browser"] 4219 "handlers": ["browser"]
4220 }, 4220 },
4221 { 4221 {
4222 "name": "inspectWorker", 4222 "name": "inspectWorker",
4223 "parameters": [ 4223 "parameters": [
4224 { "name": "versionId", "type": "string" } 4224 { "name": "versionId", "type": "string" }
4225 ], 4225 ],
4226 "handlers": ["browser"] 4226 "handlers": ["browser"]
4227 }, 4227 },
4228 { 4228 {
4229 "name": "skipWaiting",
4230 "parameters": [
4231 { "name": "versionId", "type": "string" }
4232 ],
4233 "handlers": ["browser"]
4234 },
4235 {
4229 "name": "setDebugOnStart", 4236 "name": "setDebugOnStart",
4230 "parameters": [ 4237 "parameters": [
4231 { "name": "debugOnStart", "type": "boolean" } 4238 { "name": "debugOnStart", "type": "boolean" }
4232 ], 4239 ],
4233 "handlers": ["browser"] 4240 "handlers": ["browser"]
4234 }, 4241 },
4235 { 4242 {
4236 "name": "deliverPushMessage", 4243 "name": "deliverPushMessage",
4237 "parameters": [ 4244 "parameters": [
4238 { "name": "origin", "type": "string" }, 4245 { "name": "origin", "type": "string" },
(...skipping 919 matching lines...) Expand 10 before | Expand all | Expand 10 after
5158 ], 5165 ],
5159 "returns": [ 5166 "returns": [
5160 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5167 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5161 ], 5168 ],
5162 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5169 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5163 "hidden": true 5170 "hidden": true
5164 } 5171 }
5165 ] 5172 ]
5166 }] 5173 }]
5167 } 5174 }
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