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

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: rebaselined tests Created 4 years, 10 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 957 matching lines...) Expand 10 before | Expand all | Expand 10 after
968 { 968 {
969 "name": "enable", 969 "name": "enable",
970 "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. " 970 "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. "
971 }, 971 },
972 { 972 {
973 "name": "disable", 973 "name": "disable",
974 "hidden": true, 974 "hidden": true,
975 "description": "Disables reporting of execution contexts creatio n." 975 "description": "Disables reporting of execution contexts creatio n."
976 }, 976 },
977 { 977 {
978 "name": "isRunRequired",
979 "returns": [
980 { "name": "result", "type": "boolean", "description": "True if the Runtime is in paused on start state." }
981 ],
982 "hidden": true
983 },
984 {
985 "name": "setCustomObjectFormatterEnabled", 978 "name": "setCustomObjectFormatterEnabled",
986 "parameters": [ 979 "parameters": [
987 { 980 {
988 "name": "enabled", 981 "name": "enabled",
989 "type": "boolean" 982 "type": "boolean"
990 } 983 }
991 ], 984 ],
992 "hidden": true 985 "hidden": true
993 }, 986 },
994 { 987 {
(...skipping 3288 matching lines...) Expand 10 before | Expand all | Expand 10 after
4283 "name": "disable" 4276 "name": "disable"
4284 }, 4277 },
4285 { 4278 {
4286 "name": "sendMessageToWorker", 4279 "name": "sendMessageToWorker",
4287 "parameters": [ 4280 "parameters": [
4288 { "name": "workerId", "type": "string" }, 4281 { "name": "workerId", "type": "string" },
4289 { "name": "message", "type": "string" } 4282 { "name": "message", "type": "string" }
4290 ] 4283 ]
4291 }, 4284 },
4292 { 4285 {
4293 "name": "connectToWorker", 4286 "name": "setPauseWorkersOnStart",
4294 "parameters": [
4295 { "name": "workerId", "type": "string" }
4296 ]
4297 },
4298 {
4299 "name": "disconnectFromWorker",
4300 "parameters": [
4301 { "name": "workerId", "type": "string" }
4302 ]
4303 },
4304 {
4305 "name": "setAutoconnectToWorkers",
4306 "parameters": [ 4287 "parameters": [
4307 { "name": "value", "type": "boolean" } 4288 { "name": "value", "type": "boolean" }
4308 ] 4289 ]
4309 } 4290 }
4310 ], 4291 ],
4311 "events": [ 4292 "events": [
4312 { 4293 {
4313 "name": "workerCreated", 4294 "name": "workerCreated",
4314 "parameters": [ 4295 "parameters": [
4315 { "name": "workerId", "type": "string" }, 4296 { "name": "workerId", "type": "string" },
4316 { "name": "url", "type": "string" }, 4297 { "name": "url", "type": "string" },
4317 { "name": "inspectorConnected", "type": "boolean" } 4298 { "name": "pausedOnStart", "type": "boolean" }
4318 ] 4299 ]
4319 }, 4300 },
4320 { 4301 {
4321 "name": "workerTerminated", 4302 "name": "workerTerminated",
4322 "parameters": [ 4303 "parameters": [
4323 { "name": "workerId", "type": "string" } 4304 { "name": "workerId", "type": "string" }
4324 ] 4305 ]
4325 }, 4306 },
4326 { 4307 {
4327 "name": "dispatchMessageFromWorker", 4308 "name": "dispatchMessageFromWorker",
(...skipping 938 matching lines...) Expand 10 before | Expand all | Expand 10 after
5266 ], 5247 ],
5267 "returns": [ 5248 "returns": [
5268 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5249 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5269 ], 5250 ],
5270 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5251 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5271 "hidden": true 5252 "hidden": true
5272 } 5253 }
5273 ] 5254 ]
5274 }] 5255 }]
5275 } 5256 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698