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

Unified Diff: Source/devtools/protocol.json

Issue 682423002: Devtools Animations: Show subtree animations for a given node (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/devtools/front_end/sdk/AnimationModel.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/protocol.json
diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json
index 28890152fe912c093392a816749243d5ab173926..205f306816462c8238ec3aabff4f07a76dca5181 100644
--- a/Source/devtools/protocol.json
+++ b/Source/devtools/protocol.json
@@ -4463,6 +4463,7 @@
{ "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>'s name." },
+ { "name": "backendNodeId", "$ref": "DOM.BackendNodeId", "description": "<code>AnimationNode</code>'s target node." },
{ "name": "keyframesRule", "$ref": "KeyframesRule", "optional": true, "description": "<code>AnimationNode</code>'s keyframes." }
],
"description": "AnimationNode instance"
@@ -4490,7 +4491,8 @@
{
"name": "getAnimationPlayersForNode",
"parameters": [
- { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Id of the node to get animation players for." }
+ { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Id of the node to get animation players for." },
+ { "name": "includeSubtreeAnimations", "type": "boolean", "description": "Include animations from elements subtree." }
],
"returns": [
{ "name": "animationPlayers", "type": "array", "items": { "$ref": "AnimationPlayer" }, "description": "Array of animation players." }
« no previous file with comments | « Source/devtools/front_end/sdk/AnimationModel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698