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

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

Issue 1433623002: Devtools Animations: Don't wait for empty transitions to start (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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/animation/AnimationModel.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 5146 matching lines...) Expand 10 before | Expand all | Expand 10 after
5157 { "name": "id", "type": "string", "description": "Id of the animation that was created." } 5157 { "name": "id", "type": "string", "description": "Id of the animation that was created." }
5158 ], 5158 ],
5159 "description": "Event for each animation that has been created." 5159 "description": "Event for each animation that has been created."
5160 }, 5160 },
5161 { 5161 {
5162 "name": "animationStarted", 5162 "name": "animationStarted",
5163 "parameters": [ 5163 "parameters": [
5164 { "name": "animation", "$ref": "Animation", "description": " Animation that was started." } 5164 { "name": "animation", "$ref": "Animation", "description": " Animation that was started." }
5165 ], 5165 ],
5166 "description": "Event for animation that has been started." 5166 "description": "Event for animation that has been started."
5167 },
5168 {
5169 "name": "animationCancelled",
pfeldman 2015/11/09 23:00:10 animationCanceled as American English would put it
5170 "parameters": [
5171 { "name": "id", "type": "string", "description": "Id of the animation that was cancelled."}
5172 ],
5173 "description": "Event for when an animation has been cancelled."
5167 } 5174 }
5168 ] 5175 ]
5169 }, 5176 },
5170 { 5177 {
5171 "domain": "Accessibility", 5178 "domain": "Accessibility",
5172 "hidden": true, 5179 "hidden": true,
5173 "types": [ 5180 "types": [
5174 { 5181 {
5175 "id": "AXNodeId", 5182 "id": "AXNodeId",
5176 "type": "string", 5183 "type": "string",
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
5291 ], 5298 ],
5292 "returns": [ 5299 "returns": [
5293 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5300 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5294 ], 5301 ],
5295 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5302 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5296 "hidden": true 5303 "hidden": true
5297 } 5304 }
5298 ] 5305 ]
5299 }] 5306 }]
5300 } 5307 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/animation/AnimationModel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698