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

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

Powered by Google App Engine
This is Rietveld 408576698