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

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: Address review comments Created 5 years, 8 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 4927 matching lines...) Expand 10 before | Expand all | Expand 10 after
4938 "parameters": [ 4938 "parameters": [
4939 { "name": "currentTime", "type": "number", "description": "C urrent time for the page animation timeline" } 4939 { "name": "currentTime", "type": "number", "description": "C urrent time for the page animation timeline" }
4940 ], 4940 ],
4941 "description": "Sets the current time of the document timeline." 4941 "description": "Sets the current time of the document timeline."
4942 }, 4942 },
4943 { 4943 {
4944 "name": "setTiming", 4944 "name": "setTiming",
4945 "parameters": [ 4945 "parameters": [
4946 { "name": "playerId", "type": "string", "description": "Anim ationPlayer id." }, 4946 { "name": "playerId", "type": "string", "description": "Anim ationPlayer id." },
4947 { "name": "duration", "type": "number", "description": "Dura tion of the animation." }, 4947 { "name": "duration", "type": "number", "description": "Dura tion of the animation." },
4948 { "name": "delay", "type": "number", "description": "Delay o f the animation." } 4948 { "name": "delay", "type": "number", "description": "Delay o f the animation." },
4949 { "name": "isTransition", "type": "boolean", "description": "Whether the animation is a transition." }
4949 ], 4950 ],
4950 "description": "Sets the timing of an animation node." 4951 "description": "Sets the timing of an animation node."
4951 } 4952 }
4952 ], 4953 ],
4953 "events": [ 4954 "events": [
4954 { 4955 {
4955 "name": "animationPlayerCreated", 4956 "name": "animationPlayerCreated",
4956 "parameters": [ 4957 "parameters": [
4957 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." }, 4958 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." },
4958 { "name": "resetTimeline", "type": "boolean", "description": "Whether the timeline should be reset." } 4959 { "name": "resetTimeline", "type": "boolean", "description": "Whether the timeline should be reset." }
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
5084 ], 5085 ],
5085 "returns": [ 5086 "returns": [
5086 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5087 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5087 ], 5088 ],
5088 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5089 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5089 "hidden": true 5090 "hidden": true
5090 } 5091 }
5091 ] 5092 ]
5092 }] 5093 }]
5093 } 5094 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698