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

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

Issue 1679133002: [DevTools] Remove isRunRequired, replace autoConnectToWorkers with setWaitForDebuggerOnStart. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 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
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 976 matching lines...) Expand 10 before | Expand all | Expand 10 after
987 { 987 {
988 "name": "enable", 988 "name": "enable",
989 "description": "Enables reporting of execution contexts creation by means of <code>executionContextCreated</code> event. When the reporting gets enabled the event will be sent immediately for each existing execution context. " 989 "description": "Enables reporting of execution contexts creation by means of <code>executionContextCreated</code> event. When the reporting gets enabled the event will be sent immediately for each existing execution context. "
990 }, 990 },
991 { 991 {
992 "name": "disable", 992 "name": "disable",
993 "hidden": true, 993 "hidden": true,
994 "description": "Disables reporting of execution contexts creatio n." 994 "description": "Disables reporting of execution contexts creatio n."
995 }, 995 },
996 { 996 {
997 "name": "isRunRequired",
998 "returns": [
999 { "name": "result", "type": "boolean", "description": "True if the Runtime is in paused on start state." }
1000 ],
1001 "hidden": true
1002 },
1003 {
1004 "name": "setCustomObjectFormatterEnabled", 997 "name": "setCustomObjectFormatterEnabled",
1005 "parameters": [ 998 "parameters": [
1006 { 999 {
1007 "name": "enabled", 1000 "name": "enabled",
1008 "type": "boolean" 1001 "type": "boolean"
1009 } 1002 }
1010 ], 1003 ],
1011 "hidden": true 1004 "hidden": true
1012 }, 1005 },
1013 { 1006 {
(...skipping 3213 matching lines...) Expand 10 before | Expand all | Expand 10 after
4227 "name": "disable" 4220 "name": "disable"
4228 }, 4221 },
4229 { 4222 {
4230 "name": "sendMessageToWorker", 4223 "name": "sendMessageToWorker",
4231 "parameters": [ 4224 "parameters": [
4232 { "name": "workerId", "type": "string" }, 4225 { "name": "workerId", "type": "string" },
4233 { "name": "message", "type": "string" } 4226 { "name": "message", "type": "string" }
4234 ] 4227 ]
4235 }, 4228 },
4236 { 4229 {
4237 "name": "connectToWorker", 4230 "name": "setWaitForDebuggerOnStart",
4238 "parameters": [
4239 { "name": "workerId", "type": "string" }
4240 ]
4241 },
4242 {
4243 "name": "disconnectFromWorker",
4244 "parameters": [
4245 { "name": "workerId", "type": "string" }
4246 ]
4247 },
4248 {
4249 "name": "setAutoconnectToWorkers",
4250 "parameters": [ 4231 "parameters": [
4251 { "name": "value", "type": "boolean" } 4232 { "name": "value", "type": "boolean" }
4252 ] 4233 ]
4253 } 4234 }
4254 ], 4235 ],
4255 "events": [ 4236 "events": [
4256 { 4237 {
4257 "name": "workerCreated", 4238 "name": "workerCreated",
4258 "parameters": [ 4239 "parameters": [
4259 { "name": "workerId", "type": "string" }, 4240 { "name": "workerId", "type": "string" },
4260 { "name": "url", "type": "string" }, 4241 { "name": "url", "type": "string" },
4261 { "name": "inspectorConnected", "type": "boolean" } 4242 { "name": "waitingForDebugger", "type": "boolean" }
4262 ] 4243 ]
4263 }, 4244 },
4264 { 4245 {
4265 "name": "workerTerminated", 4246 "name": "workerTerminated",
4266 "parameters": [ 4247 "parameters": [
4267 { "name": "workerId", "type": "string" } 4248 { "name": "workerId", "type": "string" }
4268 ] 4249 ]
4269 }, 4250 },
4270 { 4251 {
4271 "name": "dispatchMessageFromWorker", 4252 "name": "dispatchMessageFromWorker",
(...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after
5184 ], 5165 ],
5185 "returns": [ 5166 "returns": [
5186 { "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 }
5187 ], 5168 ],
5188 "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.",
5189 "hidden": true 5170 "hidden": true
5190 } 5171 }
5191 ] 5172 ]
5192 }] 5173 }]
5193 } 5174 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698