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

Unified Diff: Source/devtools/protocol.json

Issue 319603007: DevTools: Add snapshot command log on the frontend. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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 6590315455c27d9f2d0f64277aa7c37acb9572a7..eb8e880e659b687e19a3bca80994357e52d7397e 100644
--- a/Source/devtools/protocol.json
+++ b/Source/devtools/protocol.json
@@ -4025,7 +4025,9 @@
{
"name": "snapshotCommandLog",
"parameters": [
- { "name": "snapshotId", "$ref": "SnapshotId", "description": "The id of the layer snapshot." }
+ { "name": "snapshotId", "$ref": "SnapshotId", "description": "The id of the layer snapshot." },
+ { "name": "fromStep", "type": "integer", "optional": true, "description": "The first step to get log from (get log from the very start if not specified)." },
+ { "name": "toStep", "type": "integer", "optional": true, "description": "The last step to get log to (get log till the end if not specified)." }
],
"description": "Replays the layer snapshot and returns canvas log.",
"returns": [

Powered by Google App Engine
This is Rietveld 408576698