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

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: follow code review 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
« no previous file with comments | « Source/core/inspector/JavaScriptCallFrame.idl ('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 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",
+ "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,
+ "description": "Gets a fresh copy of variable scopes of a call frame currently on stack."
}
],
"events": [
« no previous file with comments | « Source/core/inspector/JavaScriptCallFrame.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698