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

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, 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 4898 matching lines...) Expand 10 before | Expand all | Expand 10 after
4909 "parameters": [ 4909 "parameters": [
4910 { "name": "currentTime", "type": "number", "description": "C urrent time for the page animation timeline" } 4910 { "name": "currentTime", "type": "number", "description": "C urrent time for the page animation timeline" }
4911 ], 4911 ],
4912 "description": "Sets the current time of the document timeline." 4912 "description": "Sets the current time of the document timeline."
4913 }, 4913 },
4914 { 4914 {
4915 "name": "setTiming", 4915 "name": "setTiming",
4916 "parameters": [ 4916 "parameters": [
4917 { "name": "playerId", "type": "string", "description": "Anim ationPlayer id." }, 4917 { "name": "playerId", "type": "string", "description": "Anim ationPlayer id." },
4918 { "name": "duration", "type": "number", "description": "Dura tion of the animation." }, 4918 { "name": "duration", "type": "number", "description": "Dura tion of the animation." },
4919 { "name": "delay", "type": "number", "description": "Delay o f the animation." } 4919 { "name": "delay", "type": "number", "description": "Delay o f the animation." },
4920 { "name": "isTransition", "type": "boolean", "description": "Whether the animation is a transition." }
4920 ], 4921 ],
4921 "description": "Sets the timing of an animation node." 4922 "description": "Sets the timing of an animation node."
4922 } 4923 }
4923 ], 4924 ],
4924 "events": [ 4925 "events": [
4925 { 4926 {
4926 "name": "animationPlayerCreated", 4927 "name": "animationPlayerCreated",
4927 "parameters": [ 4928 "parameters": [
4928 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." }, 4929 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." },
4929 { "name": "resetTimeline", "type": "boolean", "description": "Whether the timeline should be reset." } 4930 { "name": "resetTimeline", "type": "boolean", "description": "Whether the timeline should be reset." }
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
5055 ], 5056 ],
5056 "returns": [ 5057 "returns": [
5057 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5058 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5058 ], 5059 ],
5059 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5060 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5060 "hidden": true 5061 "hidden": true
5061 } 5062 }
5062 ] 5063 ]
5063 }] 5064 }]
5064 } 5065 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698