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

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: Missing files 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 4793 matching lines...) Expand 10 before | Expand all | Expand 10 after
4804 "description": "Sets the current time of the document timeline." 4804 "description": "Sets the current time of the document timeline."
4805 }, 4805 },
4806 { 4806 {
4807 "name": "setTiming", 4807 "name": "setTiming",
4808 "parameters": [ 4808 "parameters": [
4809 { "name": "playerId", "type": "string", "description": "Anim ationPlayer id." }, 4809 { "name": "playerId", "type": "string", "description": "Anim ationPlayer id." },
4810 { "name": "duration", "type": "number", "description": "Dura tion of the animation." }, 4810 { "name": "duration", "type": "number", "description": "Dura tion of the animation." },
4811 { "name": "delay", "type": "number", "description": "Delay o f the animation." } 4811 { "name": "delay", "type": "number", "description": "Delay o f the animation." }
4812 ], 4812 ],
4813 "description": "Sets the timing of an animation node." 4813 "description": "Sets the timing of an animation node."
4814 },
4815 {
4816 "name": "setEasing",
4817 "parameters": [
4818 { "name": "playerId", "type": "string", "description": "Anim ationPlayer id." },
4819 { "name": "easing", "type": "string", "description": "Easing of the animation." }
4820 ],
4821 "description": "Sets the easing of an animation node."
4814 } 4822 }
4815 ], 4823 ],
4816 "events": [ 4824 "events": [
4817 { 4825 {
4818 "name": "animationPlayerCreated", 4826 "name": "animationPlayerCreated",
4819 "parameters": [ 4827 "parameters": [
4820 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." }, 4828 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." },
4821 { "name": "resetTimeline", "type": "boolean", "description": "Whether the timeline should be reset." } 4829 { "name": "resetTimeline", "type": "boolean", "description": "Whether the timeline should be reset." }
4822 ], 4830 ],
4823 "description": "Event for each animation player that has been cr eated." 4831 "description": "Event for each animation player that has been cr eated."
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
4949 ], 4957 ],
4950 "returns": [ 4958 "returns": [
4951 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 4959 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
4952 ], 4960 ],
4953 "description": "Fetches the accessibility node for this DOM node , if it exists.", 4961 "description": "Fetches the accessibility node for this DOM node , if it exists.",
4954 "hidden": true 4962 "hidden": true
4955 } 4963 }
4956 ] 4964 ]
4957 }] 4965 }]
4958 } 4966 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698