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: Source/devtools/protocol.json

Issue 717003002: Animations: Allow document animation timelines to have a playback rate (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 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 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
576 "handlers": ["browser"] 576 "handlers": ["browser"]
577 }, 577 },
578 { 578 {
579 "name": "setColorPickerEnabled", 579 "name": "setColorPickerEnabled",
580 "parameters": [ 580 "parameters": [
581 { "name": "enabled", "type": "boolean", "description": "Show s / hides color picker" } 581 { "name": "enabled", "type": "boolean", "description": "Show s / hides color picker" }
582 ], 582 ],
583 "description": "Shows / hides color picker", 583 "description": "Shows / hides color picker",
584 "hidden": true, 584 "hidden": true,
585 "handlers": ["browser"] 585 "handlers": ["browser"]
586 },
587 {
588 "name": "setAnimationsPlaybackRate",
589 "parameters": [
590 { "name": "playbackRate", "type": "number", "description": " Playback rate for animations on page" }
591 ],
592 "description": "Sets the playback rate of the document timeline. ",
593 "hidden": true
586 } 594 }
587 ], 595 ],
588 "events": [ 596 "events": [
589 { 597 {
590 "name": "domContentEventFired", 598 "name": "domContentEventFired",
591 "parameters": [ 599 "parameters": [
592 { "name": "timestamp", "type": "number" } 600 { "name": "timestamp", "type": "number" }
593 ] 601 ]
594 }, 602 },
595 { 603 {
(...skipping 3938 matching lines...) Expand 10 before | Expand all | Expand 10 after
4534 { "name": "isRunning", "type": "boolean", "description": "If the animation player is still running." } 4542 { "name": "isRunning", "type": "boolean", "description": "If the animation player is still running." }
4535 ], 4543 ],
4536 "description": "Gets the state of an AnimationPlayer.", 4544 "description": "Gets the state of an AnimationPlayer.",
4537 "hidden": true 4545 "hidden": true
4538 } 4546 }
4539 ], 4547 ],
4540 "events": [ 4548 "events": [
4541 ] 4549 ]
4542 }] 4550 }]
4543 } 4551 }
OLDNEW
« Source/core/inspector/InspectorPageAgent.cpp ('K') | « Source/core/inspector/InspectorPageAgent.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698