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

Unified Diff: Source/devtools/protocol.json

Issue 19064004: Support re-reading scope variables in protocol and on backed. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: clean Created 7 years, 5 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 fed0b2f2f0d27a2a846563fdd74a6f4e7f0a987a..54896b5c0d95f675b386795327f0439b90aaf3f3 100644
--- a/Source/devtools/protocol.json
+++ b/Source/devtools/protocol.json
@@ -3022,6 +3022,17 @@
],
"hidden": true,
"description": "Changes value of variable in a callframe or a closure. Either callframe or function must be specified. Object-based scopes are not supported and must be mutated manually."
+ },
+ {
+ "name": "updateCallFrameScopes",
yurys 2013/07/16 07:45:05 Why is it called updateCallFrameScopes here and re
Peter.Rybin 2013/07/16 12:02:27 I guess we should discuss naming.
+ "parameters": [
+ { "name": "callFrameId", "$ref": "CallFrameId", "description": "Call frame id that scopes must be re-read of." }
+ ],
+ "returns": [
+ { "name": "scopeChain", "type": "array", "items": { "$ref": "Scope" }, "description": "Scope chain for this call frame." }
+ ],
+ "hidden": true,
Peter.Rybin 2013/07/14 23:13:16 We may want to make it public, since there is an e
yurys 2013/07/16 07:45:05 Let's keep it hidden for some time to make sure it
+ "description": "Gets a fresh copy of variable scopes of a call frame currently on stack."
}
],
"events": [

Powered by Google App Engine
This is Rietveld 408576698