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

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

Issue 993413004: Devtools Animations: Update transition timing on timeline interaction (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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 4881 matching lines...) Expand 10 before | Expand all | Expand 10 after
4892 "parameters": [ 4892 "parameters": [
4893 { "name": "currentTime", "type": "number", "description": "C urrent time for the page animation timeline" } 4893 { "name": "currentTime", "type": "number", "description": "C urrent time for the page animation timeline" }
4894 ], 4894 ],
4895 "description": "Sets the current time of the document timeline." 4895 "description": "Sets the current time of the document timeline."
4896 }, 4896 },
4897 { 4897 {
4898 "name": "setTiming", 4898 "name": "setTiming",
4899 "parameters": [ 4899 "parameters": [
4900 { "name": "playerId", "type": "string", "description": "Anim ationPlayer id." }, 4900 { "name": "playerId", "type": "string", "description": "Anim ationPlayer id." },
4901 { "name": "duration", "type": "number", "description": "Dura tion of the animation." }, 4901 { "name": "duration", "type": "number", "description": "Dura tion of the animation." },
4902 { "name": "delay", "type": "number", "description": "Delay o f the animation." } 4902 { "name": "delay", "type": "number", "description": "Delay o f the animation." },
4903 { "name": "isTransition", "type": "boolean", "description": "Whether the animation is a transition." }
4903 ], 4904 ],
4904 "description": "Sets the timing of an animation node." 4905 "description": "Sets the timing of an animation node."
4905 } 4906 }
4906 ], 4907 ],
4907 "events": [ 4908 "events": [
4908 { 4909 {
4909 "name": "animationPlayerCreated", 4910 "name": "animationPlayerCreated",
4910 "parameters": [ 4911 "parameters": [
4911 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." }, 4912 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." },
4912 { "name": "resetTimeline", "type": "boolean", "description": "Whether the timeline should be reset." } 4913 { "name": "resetTimeline", "type": "boolean", "description": "Whether the timeline should be reset." }
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
5038 ], 5039 ],
5039 "returns": [ 5040 "returns": [
5040 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5041 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5041 ], 5042 ],
5042 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5043 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5043 "hidden": true 5044 "hidden": true
5044 } 5045 }
5045 ] 5046 ]
5046 }] 5047 }]
5047 } 5048 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698