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

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: Rebase Created 5 years, 6 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
« no previous file with comments | « Source/devtools/front_end/ui/module.json ('k') | Source/platform/animation/TimingFunction.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 4794 matching lines...) Expand 10 before | Expand all | Expand 10 after
4805 "description": "Sets the current time of the document timeline." 4805 "description": "Sets the current time of the document timeline."
4806 }, 4806 },
4807 { 4807 {
4808 "name": "setTiming", 4808 "name": "setTiming",
4809 "parameters": [ 4809 "parameters": [
4810 { "name": "playerId", "type": "string", "description": "Anim ationPlayer id." }, 4810 { "name": "playerId", "type": "string", "description": "Anim ationPlayer id." },
4811 { "name": "duration", "type": "number", "description": "Dura tion of the animation." }, 4811 { "name": "duration", "type": "number", "description": "Dura tion of the animation." },
4812 { "name": "delay", "type": "number", "description": "Delay o f the animation." } 4812 { "name": "delay", "type": "number", "description": "Delay o f the animation." }
4813 ], 4813 ],
4814 "description": "Sets the timing of an animation node." 4814 "description": "Sets the timing of an animation node."
4815 },
4816 {
4817 "name": "setEasing",
4818 "parameters": [
4819 { "name": "playerId", "type": "string", "description": "Anim ationPlayer id." },
4820 { "name": "easing", "type": "string", "description": "Easing of the animation." }
4821 ],
4822 "description": "Sets the easing of an animation node."
4815 } 4823 }
4816 ], 4824 ],
4817 "events": [ 4825 "events": [
4818 { 4826 {
4819 "name": "animationPlayerCreated", 4827 "name": "animationPlayerCreated",
4820 "parameters": [ 4828 "parameters": [
4821 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." }, 4829 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." },
4822 { "name": "resetTimeline", "type": "boolean", "description": "Whether the timeline should be reset." } 4830 { "name": "resetTimeline", "type": "boolean", "description": "Whether the timeline should be reset." }
4823 ], 4831 ],
4824 "description": "Event for each animation player that has been cr eated." 4832 "description": "Event for each animation player that has been cr eated."
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
4958 ], 4966 ],
4959 "returns": [ 4967 "returns": [
4960 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 4968 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
4961 ], 4969 ],
4962 "description": "Fetches the accessibility node for this DOM node , if it exists.", 4970 "description": "Fetches the accessibility node for this DOM node , if it exists.",
4963 "hidden": true 4971 "hidden": true
4964 } 4972 }
4965 ] 4973 ]
4966 }] 4974 }]
4967 } 4975 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/ui/module.json ('k') | Source/platform/animation/TimingFunction.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698