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

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

Issue 693893002: [DevTools] Add configuration parameter to Page.setTouchEmulationEnabled. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/sdk/OverridesSupport.js ('k') | Source/web/WebDevToolsAgentImpl.cpp » ('j') | 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 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 }, 473 },
474 { 474 {
475 "name": "clearDeviceOrientationOverride", 475 "name": "clearDeviceOrientationOverride",
476 "description": "Clears the overridden Device Orientation.", 476 "description": "Clears the overridden Device Orientation.",
477 "redirect": "DeviceOrientation", 477 "redirect": "DeviceOrientation",
478 "hidden": true 478 "hidden": true
479 }, 479 },
480 { 480 {
481 "name": "setTouchEmulationEnabled", 481 "name": "setTouchEmulationEnabled",
482 "parameters": [ 482 "parameters": [
483 { "name": "enabled", "type": "boolean", "description": "Whet her the touch event emulation should be enabled." } 483 { "name": "enabled", "type": "boolean", "description": "Whet her the touch event emulation should be enabled." },
484 { "name": "configuration", "type": "string", "enum": ["mobil e", "desktop"], "optional": true, "description": "Touch/gesture events configura tion. Default: current platform." }
484 ], 485 ],
485 "description": "Toggles mouse event-based touch event emulation. ", 486 "description": "Toggles mouse event-based touch event emulation. ",
486 "hidden": true, 487 "hidden": true,
487 "handlers": ["browser", "renderer"] 488 "handlers": ["browser", "renderer"]
488 }, 489 },
489 { 490 {
490 "name": "setEmulatedMedia", 491 "name": "setEmulatedMedia",
491 "parameters": [ 492 "parameters": [
492 { "name": "media", "type": "string", "description": "Media t ype to emulate. Empty string disables the override." } 493 { "name": "media", "type": "string", "description": "Media t ype to emulate. Empty string disables the override." }
493 ], 494 ],
(...skipping 4039 matching lines...) Expand 10 before | Expand all | Expand 10 after
4533 { "name": "isRunning", "type": "boolean", "description": "If the animation player is still running." } 4534 { "name": "isRunning", "type": "boolean", "description": "If the animation player is still running." }
4534 ], 4535 ],
4535 "description": "Gets the state of an AnimationPlayer.", 4536 "description": "Gets the state of an AnimationPlayer.",
4536 "hidden": true 4537 "hidden": true
4537 } 4538 }
4538 ], 4539 ],
4539 "events": [ 4540 "events": [
4540 ] 4541 ]
4541 }] 4542 }]
4542 } 4543 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sdk/OverridesSupport.js ('k') | Source/web/WebDevToolsAgentImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698