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

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

Issue 1417173002: Devtools Animations: Pause button based on groups not global (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
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 5064 matching lines...) Expand 10 before | Expand all | Expand 10 after
5075 "name": "getCurrentTime", 5075 "name": "getCurrentTime",
5076 "parameters": [ 5076 "parameters": [
5077 { "name": "id", "type": "string", "description": "Id of anim ation." } 5077 { "name": "id", "type": "string", "description": "Id of anim ation." }
5078 ], 5078 ],
5079 "returns": [ 5079 "returns": [
5080 { "name": "currentTime", "type": "number", "description": "C urrent time of the page." } 5080 { "name": "currentTime", "type": "number", "description": "C urrent time of the page." }
5081 ], 5081 ],
5082 "description": "Returns the current time of the an animation." 5082 "description": "Returns the current time of the an animation."
5083 }, 5083 },
5084 { 5084 {
5085 "name": "setPaused",
5086 "parameters": [
5087 { "name": "animations", "type": "array", "items": { "type": "string" }, "description": "Animations to set the pause state of." },
5088 { "name": "paused", "type": "boolean", "description": "Pause d state to set to." }
5089 ],
5090 "description": "Sets the paused state of a set of animations."
5091 },
5092 {
5085 "name": "setTiming", 5093 "name": "setTiming",
5086 "parameters": [ 5094 "parameters": [
5087 { "name": "animationId", "type": "string", "description": "A nimation id." }, 5095 { "name": "animationId", "type": "string", "description": "A nimation id." },
5088 { "name": "duration", "type": "number", "description": "Dura tion of the animation." }, 5096 { "name": "duration", "type": "number", "description": "Dura tion of the animation." },
5089 { "name": "delay", "type": "number", "description": "Delay o f the animation." } 5097 { "name": "delay", "type": "number", "description": "Delay o f the animation." }
5090 ], 5098 ],
5091 "description": "Sets the timing of an animation node." 5099 "description": "Sets the timing of an animation node."
5092 }, 5100 },
5093 { 5101 {
5094 "name": "seekAnimations", 5102 "name": "seekAnimations",
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
5250 ], 5258 ],
5251 "returns": [ 5259 "returns": [
5252 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5260 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5253 ], 5261 ],
5254 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5262 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5255 "hidden": true 5263 "hidden": true
5256 } 5264 }
5257 ] 5265 ]
5258 }] 5266 }]
5259 } 5267 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698