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

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

Issue 1949793002: Emit a console warning when blocking event listener is delayed for too long (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed Created 4 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
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 4510 matching lines...) Expand 10 before | Expand all | Expand 10 after
4521 "parameters": [ 4521 "parameters": [
4522 { "name": "x", "type": "integer", "description": "X coordina te of the start of the gesture in CSS pixels." }, 4522 { "name": "x", "type": "integer", "description": "X coordina te of the start of the gesture in CSS pixels." },
4523 { "name": "y", "type": "integer", "description": "Y coordina te of the start of the gesture in CSS pixels." }, 4523 { "name": "y", "type": "integer", "description": "Y coordina te of the start of the gesture in CSS pixels." },
4524 { "name": "duration", "type": "integer", "optional": true, " description": "Duration between touchdown and touchup events in ms (default: 50) ." }, 4524 { "name": "duration", "type": "integer", "optional": true, " description": "Duration between touchdown and touchup events in ms (default: 50) ." },
4525 { "name": "tapCount", "type": "integer", "optional": true, " description": "Number of times to perform the tap (e.g. 2 for double tap, defaul t: 1)." }, 4525 { "name": "tapCount", "type": "integer", "optional": true, " description": "Number of times to perform the tap (e.g. 2 for double tap, defaul t: 1)." },
4526 { "name": "gestureSourceType", "$ref": "GestureSourceType", "optional": true, "description": "Which type of input events to be generated (de fault: 'default', which queries the platform for the preferred input type)." } 4526 { "name": "gestureSourceType", "$ref": "GestureSourceType", "optional": true, "description": "Which type of input events to be generated (de fault: 'default', which queries the platform for the preferred input type)." }
4527 ], 4527 ],
4528 "description": "Synthesizes a tap gesture over a time period by issuing appropriate touch events.", 4528 "description": "Synthesizes a tap gesture over a time period by issuing appropriate touch events.",
4529 "hidden": true, 4529 "hidden": true,
4530 "handlers": ["browser"] 4530 "handlers": ["browser"]
4531 },
4532 {
4533 "name": "setBlockedEventsWarningThreshold",
4534 "hidden": true,
4535 "parameters": [
4536 { "name": "threshold", "type": "number", "description": "If set to a positive number, specifies threshold in seconds for input event latency that will cause a console warning about blocked event to be issued. If zero or less, the warning is disabled." }
4537 ]
4531 } 4538 }
4532 ], 4539 ],
4533 "events": [] 4540 "events": []
4534 }, 4541 },
4535 { 4542 {
4536 "domain": "LayerTree", 4543 "domain": "LayerTree",
4537 "hidden": true, 4544 "hidden": true,
4538 "types": [ 4545 "types": [
4539 { 4546 {
4540 "id": "LayerId", 4547 "id": "LayerId",
(...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after
5110 ], 5117 ],
5111 "returns": [ 5118 "returns": [
5112 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5119 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5113 ], 5120 ],
5114 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5121 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5115 "hidden": true 5122 "hidden": true
5116 } 5123 }
5117 ] 5124 ]
5118 }] 5125 }]
5119 } 5126 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698