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

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: removed forward decls & includes that are not in use now 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 4527 matching lines...) Expand 10 before | Expand all | Expand 10 after
4538 "parameters": [ 4538 "parameters": [
4539 { "name": "x", "type": "integer", "description": "X coordina te of the start of the gesture in CSS pixels." }, 4539 { "name": "x", "type": "integer", "description": "X coordina te of the start of the gesture in CSS pixels." },
4540 { "name": "y", "type": "integer", "description": "Y coordina te of the start of the gesture in CSS pixels." }, 4540 { "name": "y", "type": "integer", "description": "Y coordina te of the start of the gesture in CSS pixels." },
4541 { "name": "duration", "type": "integer", "optional": true, " description": "Duration between touchdown and touchup events in ms (default: 50) ." }, 4541 { "name": "duration", "type": "integer", "optional": true, " description": "Duration between touchdown and touchup events in ms (default: 50) ." },
4542 { "name": "tapCount", "type": "integer", "optional": true, " description": "Number of times to perform the tap (e.g. 2 for double tap, defaul t: 1)." }, 4542 { "name": "tapCount", "type": "integer", "optional": true, " description": "Number of times to perform the tap (e.g. 2 for double tap, defaul t: 1)." },
4543 { "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)." } 4543 { "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)." }
4544 ], 4544 ],
4545 "description": "Synthesizes a tap gesture over a time period by issuing appropriate touch events.", 4545 "description": "Synthesizes a tap gesture over a time period by issuing appropriate touch events.",
4546 "hidden": true, 4546 "hidden": true,
4547 "handlers": ["browser"] 4547 "handlers": ["browser"]
4548 },
4549 {
4550 "name": "setBlockedEventsWarningThreshold",
4551 "hidden": true,
4552 "parameters": [
4553 { "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." }
4554 ]
4548 } 4555 }
4549 ], 4556 ],
4550 "events": [] 4557 "events": []
4551 }, 4558 },
4552 { 4559 {
4553 "domain": "LayerTree", 4560 "domain": "LayerTree",
4554 "hidden": true, 4561 "hidden": true,
4555 "types": [ 4562 "types": [
4556 { 4563 {
4557 "id": "LayerId", 4564 "id": "LayerId",
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after
5150 "parameters": [ 5157 "parameters": [
5151 { "name": "origin", "type": "string", "description": "Securi ty origin." }, 5158 { "name": "origin", "type": "string", "description": "Securi ty origin." },
5152 { "name": "storageTypes", "type": "string", "description": " Comma separated origin names." } 5159 { "name": "storageTypes", "type": "string", "description": " Comma separated origin names." }
5153 ], 5160 ],
5154 "description": "Clears storage for origin.", 5161 "description": "Clears storage for origin.",
5155 "handlers": ["browser"] 5162 "handlers": ["browser"]
5156 } 5163 }
5157 ] 5164 ]
5158 }] 5165 }]
5159 } 5166 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698