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

Unified Diff: Source/devtools/protocol.json

Issue 620783002: Devtools Animations: Basic animation inspection & control in Styles pane (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove keyframe view Created 6 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 side-by-side diff with in-line comments
Download patch
Index: Source/devtools/protocol.json
diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json
index 1c012310c7857c770f7685c422da69fb0f5def6f..aed09f2f05008b47e993a66445c2a25814b9fc6d 100644
--- a/Source/devtools/protocol.json
+++ b/Source/devtools/protocol.json
@@ -2105,6 +2105,38 @@
{ "name": "shapeMarginColor", "$ref": "RGBA", "optional": true, "hidden": true, "description": "The shape margin fill color (default: transparent)." }
],
"description": "Configuration data for the highlighting of page elements."
+ },
+ {
+ "id": "AnimationPlayer",
+ "type": "object",
+ "hidden": true,
+ "properties": [
+ { "name": "id", "type": "string", "description": "<code>AnimationPlayer</code>'s id." },
+ { "name": "paused", "type": "boolean", "description": "<code>AnimationPlayer</code>'s paused." },
vsevik 2014/10/14 09:08:09 s/paused/paused state/
dstockwell 2014/10/14 09:19:14 Drive by: AnimationPlayer doesn't have paused/fini
samli 2014/10/15 08:46:45 Acknowledged. Changed to playState instead.
+ { "name": "finished", "type": "boolean", "description": "<code>AnimationPlayer</code>'s finished." },
vsevik 2014/10/14 09:08:09 ditto
samli 2014/10/15 08:46:45 Done.
+ { "name": "playbackRate", "type": "number", "description": "<code>AnimationPlayer</code>'s playbackRate." },
vsevik 2014/10/14 09:08:09 playback rate
samli 2014/10/15 08:46:45 Done.
+ { "name": "startTime", "type": "number", "description": "<code>AnimationPlayer</code>'s current time." },
vsevik 2014/10/14 09:08:09 start time
samli 2014/10/15 08:46:45 Done.
+ { "name": "currentTime", "type": "number", "description": "<code>AnimationPlayer</code>'s current time." },
+ { "name": "animation", "$ref": "DOM.AnimationNode", "description": "<code>AnimationPlayer</code>'s source animation." }
vsevik 2014/10/14 09:08:09 source animation node
vsevik 2014/10/14 09:08:09 I think naming it source better matches the spec.
samli 2014/10/15 08:46:45 Done.
+ ],
+ "description": "AnimationPlayer instance."
+ },
+ {
+ "id": "AnimationNode",
+ "type": "object",
+ "hidden": true,
+ "properties": [
+ { "name": "startDelay", "type": "number", "description": "<code>AnimationNode</code>'s start delay." },
+ { "name": "playbackRate", "type": "number", "description": "<code>AnimationNode</code>'s playbackRate." },
+ { "name": "iterationStart", "type": "number", "description": "<code>AnimationNode</code>'s iteration start." },
+ { "name": "iterationCount", "type": "number", "description": "<code>AnimationNode</code>'s iteration count." },
+ { "name": "duration", "type": "number", "description": "<code>AnimationNode</code>'s iteration duration." },
+ { "name": "direction", "type": "number", "description": "<code>AnimationNode</code>'s playback direction." },
+ { "name": "fillMode", "type": "number", "description": "<code>AnimationNode</code>'s fill mode." },
+ { "name": "timeFraction", "type": "number", "description": "<code>AnimationNode</code>'s time fraction." },
+ { "name": "name", "type": "string", "description": "<code>AnimationNode</code> name."}
+ ],
+ "description": "AnimationNode instance"
}
],
"commands": [
@@ -2468,6 +2500,63 @@
],
"description": "Returns the id of the nearest ancestor that is a relayout boundary.",
"hidden": true
+ },
+ {
+ "name": "getAnimationPlayersForNode",
+ "parameters": [
+ { "name": "nodeId", "$ref": "NodeId", "description": "Id of the node to get animation players for." }
+ ],
+ "returns": [
+ { "name": "animationPlayers", "type": "array", "items": { "$ref": "AnimationPlayer" }, "description": "Array of animation players." }
+ ],
+ "description": "Returns animation players relevant to the node.",
+ "hidden": true
+ },
+ {
+ "name": "pauseAnimationPlayer",
+ "parameters": [
+ { "name": "id", "type": "string", "description": "Id of the animation player." }
+ ],
+ "returns": [
+ { "name": "animationPlayer", "$ref": "AnimationPlayer", "description": "Animation Player with current time set." }
+ ],
+ "description": "Pauses animations relevant to the node.",
+ "hidden": true
+ },
+ {
+ "name": "playAnimationPlayer",
+ "parameters": [
+ { "name": "id", "type": "string", "description": "Id of the animation player." }
+ ],
+ "returns": [
+ { "name": "animationPlayer", "$ref": "AnimationPlayer", "description": "Animation Player with current time set." }
+ ],
+ "description": "Plays animations relevant to the node.",
+ "hidden": true
+ },
+ {
+ "name": "setAnimationPlayerCurrentTime",
+ "parameters": [
+ { "name": "id", "type": "string", "description": "Id of the animation player." },
+ { "name": "currentTime", "type": "number", "description": "Current time to set animation to"}
+ ],
+ "returns": [
+ { "name": "animationPlayer", "$ref": "AnimationPlayer", "description": "Animation Player with current time set." }
+ ],
+ "description": "Sets the current time on given AnimationPlayer.",
+ "hidden": true
+ },
+ {
+ "name": "getAnimationPlayerState",
+ "parameters": [
+ { "name": "id", "type": "string", "description": "Id of the animation player." }
+ ],
+ "returns": [
+ { "name": "currentTime", "type": "number", "description": "Current time of the animation player." },
+ { "name": "isRunning", "type": "boolean", "description": "If the animation player is still running." }
+ ],
+ "description": "Gets the state of an AnimationPlayer.",
+ "hidden": true
}
],
"events": [
« Source/devtools/front_end/sdk/DOMModel.js ('K') | « Source/devtools/front_end/sdk/DOMModel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698