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

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

Issue 1155773002: Devtools Animations: Add cubic bezier easing editor for animations (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove empty line Created 5 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 | Annotate | Revision Log
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 4821 matching lines...) Expand 10 before | Expand all | Expand 10 after
4832 "description": "Sets the current time of the document timeline." 4832 "description": "Sets the current time of the document timeline."
4833 }, 4833 },
4834 { 4834 {
4835 "name": "setTiming", 4835 "name": "setTiming",
4836 "parameters": [ 4836 "parameters": [
4837 { "name": "playerId", "type": "string", "description": "Anim ationPlayer id." }, 4837 { "name": "playerId", "type": "string", "description": "Anim ationPlayer id." },
4838 { "name": "duration", "type": "number", "description": "Dura tion of the animation." }, 4838 { "name": "duration", "type": "number", "description": "Dura tion of the animation." },
4839 { "name": "delay", "type": "number", "description": "Delay o f the animation." } 4839 { "name": "delay", "type": "number", "description": "Delay o f the animation." }
4840 ], 4840 ],
4841 "description": "Sets the timing of an animation node." 4841 "description": "Sets the timing of an animation node."
4842 },
4843 {
4844 "name": "setEasing",
4845 "parameters": [
4846 { "name": "playerId", "type": "string", "description": "Anim ationPlayer id." },
4847 { "name": "easing", "type": "string", "description": "Easing of the animation." }
4848 ],
4849 "description": "Sets the easing of an animation node."
4842 } 4850 }
4843 ], 4851 ],
4844 "events": [ 4852 "events": [
4845 { 4853 {
4846 "name": "animationPlayerCreated", 4854 "name": "animationPlayerCreated",
4847 "parameters": [ 4855 "parameters": [
4848 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." }, 4856 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." },
4849 { "name": "resetTimeline", "type": "boolean", "description": "Whether the timeline should be reset." } 4857 { "name": "resetTimeline", "type": "boolean", "description": "Whether the timeline should be reset." }
4850 ], 4858 ],
4851 "description": "Event for each animation player that has been cr eated." 4859 "description": "Event for each animation player that has been cr eated."
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
4977 ], 4985 ],
4978 "returns": [ 4986 "returns": [
4979 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 4987 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
4980 ], 4988 ],
4981 "description": "Fetches the accessibility node for this DOM node , if it exists.", 4989 "description": "Fetches the accessibility node for this DOM node , if it exists.",
4982 "hidden": true 4990 "hidden": true
4983 } 4991 }
4984 ] 4992 ]
4985 }] 4993 }]
4986 } 4994 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698