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

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

Issue 1841863003: DevTools: move the force update SW on reload checkbox to the Resources / Service Workers view. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test fixed Created 4 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/module.json ('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 4182 matching lines...) Expand 10 before | Expand all | Expand 10 after
4193 "domain": "ServiceWorker", 4193 "domain": "ServiceWorker",
4194 "hidden": true, 4194 "hidden": true,
4195 "types": [ 4195 "types": [
4196 { 4196 {
4197 "id": "ServiceWorkerRegistration", 4197 "id": "ServiceWorkerRegistration",
4198 "type": "object", 4198 "type": "object",
4199 "description": "ServiceWorker registration.", 4199 "description": "ServiceWorker registration.",
4200 "properties": [ 4200 "properties": [
4201 { "name": "registrationId", "type": "string" }, 4201 { "name": "registrationId", "type": "string" },
4202 { "name": "scopeURL", "type": "string" }, 4202 { "name": "scopeURL", "type": "string" },
4203 { "name": "isDeleted", "type": "boolean" }, 4203 { "name": "isDeleted", "type": "boolean" }
4204 { "name": "forceUpdateOnPageLoad", "type": "boolean", "optio nal": true }
4205 ] 4204 ]
4206 }, 4205 },
4207 { 4206 {
4208 "id": "ServiceWorkerVersionRunningStatus", 4207 "id": "ServiceWorkerVersionRunningStatus",
4209 "type": "string", 4208 "type": "string",
4210 "enum": ["stopped", "starting", "running", "stopping"] 4209 "enum": ["stopped", "starting", "running", "stopping"]
4211 }, 4210 },
4212 { 4211 {
4213 "id": "ServiceWorkerVersionStatus", 4212 "id": "ServiceWorkerVersionStatus",
4214 "type": "string", 4213 "type": "string",
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
4310 "handlers": ["browser"] 4309 "handlers": ["browser"]
4311 }, 4310 },
4312 { 4311 {
4313 "name": "inspectWorker", 4312 "name": "inspectWorker",
4314 "parameters": [ 4313 "parameters": [
4315 { "name": "versionId", "type": "string" } 4314 { "name": "versionId", "type": "string" }
4316 ], 4315 ],
4317 "handlers": ["browser"] 4316 "handlers": ["browser"]
4318 }, 4317 },
4319 { 4318 {
4320 "name": "setDebugOnStart",
4321 "parameters": [
4322 { "name": "debugOnStart", "type": "boolean" }
4323 ],
4324 "handlers": ["browser"]
4325 },
4326 {
4327 "name": "setForceUpdateOnPageLoad", 4319 "name": "setForceUpdateOnPageLoad",
4328 "parameters": [ 4320 "parameters": [
4329 { "name": "registrationId", "type": "string" },
4330 { "name": "forceUpdateOnPageLoad", "type": "boolean" } 4321 { "name": "forceUpdateOnPageLoad", "type": "boolean" }
4331 ], 4322 ],
4332 "handlers": ["browser"] 4323 "handlers": ["browser"]
4333 }, 4324 },
4334 { 4325 {
4335 "name": "deliverPushMessage", 4326 "name": "deliverPushMessage",
4336 "parameters": [ 4327 "parameters": [
4337 { "name": "origin", "type": "string" }, 4328 { "name": "origin", "type": "string" },
4338 { "name": "registrationId", "type": "string" }, 4329 { "name": "registrationId", "type": "string" },
4339 { "name": "data", "type": "string" } 4330 { "name": "data", "type": "string" }
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
4396 { "name": "versions", "type": "array", "items": { "$ref": "S erviceWorkerVersion" } } 4387 { "name": "versions", "type": "array", "items": { "$ref": "S erviceWorkerVersion" } }
4397 ], 4388 ],
4398 "handlers": ["browser"] 4389 "handlers": ["browser"]
4399 }, 4390 },
4400 { 4391 {
4401 "name": "workerErrorReported", 4392 "name": "workerErrorReported",
4402 "parameters": [ 4393 "parameters": [
4403 { "name": "errorMessage", "$ref": "ServiceWorkerErrorMessage " } 4394 { "name": "errorMessage", "$ref": "ServiceWorkerErrorMessage " }
4404 ], 4395 ],
4405 "handlers": ["browser"] 4396 "handlers": ["browser"]
4406 },
4407 {
4408 "name": "debugOnStartUpdated",
4409 "parameters": [
4410 { "name": "debugOnStart", "type": "boolean" }
4411 ],
4412 "handlers": ["browser"]
4413 } 4397 }
4414 ] 4398 ]
4415 }, 4399 },
4416 { 4400 {
4417 "domain": "Input", 4401 "domain": "Input",
4418 "types": [ 4402 "types": [
4419 { 4403 {
4420 "id": "TouchPoint", 4404 "id": "TouchPoint",
4421 "type": "object", 4405 "type": "object",
4422 "hidden": true, 4406 "hidden": true,
(...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after
5131 ], 5115 ],
5132 "returns": [ 5116 "returns": [
5133 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5117 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5134 ], 5118 ],
5135 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5119 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5136 "hidden": true 5120 "hidden": true
5137 } 5121 }
5138 ] 5122 ]
5139 }] 5123 }]
5140 } 5124 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/module.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698