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

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

Powered by Google App Engine
This is Rietveld 408576698