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

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

Issue 1063693002: [WIP] Support opening an inspector window for ServiceWorker running on Android (blink) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 5 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 | « 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 4058 matching lines...) Expand 10 before | Expand all | Expand 10 after
4069 "id": "ServiceWorkerVersion", 4069 "id": "ServiceWorkerVersion",
4070 "type": "object", 4070 "type": "object",
4071 "description": "ServiceWorker version.", 4071 "description": "ServiceWorker version.",
4072 "properties": [ 4072 "properties": [
4073 { "name": "versionId", "type": "string" }, 4073 { "name": "versionId", "type": "string" },
4074 { "name": "registrationId", "type": "string" }, 4074 { "name": "registrationId", "type": "string" },
4075 { "name": "scriptURL", "type": "string" }, 4075 { "name": "scriptURL", "type": "string" },
4076 { "name": "runningStatus", "$ref": "ServiceWorkerVersionRunn ingStatus" }, 4076 { "name": "runningStatus", "$ref": "ServiceWorkerVersionRunn ingStatus" },
4077 { "name": "status", "$ref": "ServiceWorkerVersionStatus" }, 4077 { "name": "status", "$ref": "ServiceWorkerVersionStatus" },
4078 { "name": "scriptLastModified", "type": "number", "optional" : true, "description": "The Last-Modified header value of the main script." }, 4078 { "name": "scriptLastModified", "type": "number", "optional" : true, "description": "The Last-Modified header value of the main script." },
4079 { "name": "scriptResponseTime", "type": "number", "optional" : true, "description": "The time at which the response headers of the main scrip t were received from the server. For cached script it is the last time the cach e entry was validated." } 4079 { "name": "scriptResponseTime", "type": "number", "optional" : true, "description": "The time at which the response headers of the main scrip t were received from the server. For cached script it is the last time the cach e entry was validated." },
4080 { "name": "workerId", "type": "string" }
4080 ] 4081 ]
4081 }, 4082 },
4082 { 4083 {
4083 "id": "ServiceWorkerErrorMessage", 4084 "id": "ServiceWorkerErrorMessage",
4084 "type": "object", 4085 "type": "object",
4085 "description": "ServiceWorker error message.", 4086 "description": "ServiceWorker error message.",
4086 "properties": [ 4087 "properties": [
4087 { "name": "errorMessage", "type": "string" }, 4088 { "name": "errorMessage", "type": "string" },
4088 { "name": "registrationId", "type": "string" }, 4089 { "name": "registrationId", "type": "string" },
4089 { "name": "versionId", "type": "string" }, 4090 { "name": "versionId", "type": "string" },
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
4139 "handlers": ["browser"] 4140 "handlers": ["browser"]
4140 }, 4141 },
4141 { 4142 {
4142 "name": "inspectWorker", 4143 "name": "inspectWorker",
4143 "parameters": [ 4144 "parameters": [
4144 { "name": "versionId", "type": "string" } 4145 { "name": "versionId", "type": "string" }
4145 ], 4146 ],
4146 "handlers": ["browser"] 4147 "handlers": ["browser"]
4147 }, 4148 },
4148 { 4149 {
4150 "name": "detachWorker",
4151 "parameters": [
4152 { "name": "workerId", "type": "string" }
4153 ],
4154 "handlers": ["browser"]
4155 },
4156 {
4149 "name": "setDebugOnStart", 4157 "name": "setDebugOnStart",
4150 "parameters": [ 4158 "parameters": [
4151 { "name": "debugOnStart", "type": "boolean" } 4159 { "name": "debugOnStart", "type": "boolean" }
4152 ], 4160 ],
4153 "handlers": ["browser"] 4161 "handlers": ["browser"]
4154 } 4162 }
4155 ], 4163 ],
4156 "events": [ 4164 "events": [
4157 { 4165 {
4158 "name": "workerCreated", 4166 "name": "workerCreated",
(...skipping 911 matching lines...) Expand 10 before | Expand all | Expand 10 after
5070 ], 5078 ],
5071 "returns": [ 5079 "returns": [
5072 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5080 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5073 ], 5081 ],
5074 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5082 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5075 "hidden": true 5083 "hidden": true
5076 } 5084 }
5077 ] 5085 ]
5078 }] 5086 }]
5079 } 5087 }
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