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

Unified Diff: Source/devtools/protocol.json

Issue 466243002: Support merged Dart-JS callstacks (Closed) Base URL: svn://svn.chromium.org/blink/branches/dart/dartium
Patch Set: Created 6 years, 3 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/ScriptDebugListener.h ('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 fd3a09047335b339c80eaa8a4d1271fe8de0a660..f16ff1dc097428a2de003ca6fee0321470b8da2f 100644
--- a/Source/devtools/protocol.json
+++ b/Source/devtools/protocol.json
@@ -2962,7 +2962,9 @@
{ "name": "location", "$ref": "Location", "description": "Location in the source code." },
{ "name": "scopeChain", "type": "array", "items": { "$ref": "Scope" }, "description": "Scope chain for this call frame." },
{ "name": "this", "$ref": "Runtime.RemoteObject", "description": "<code>this</code> object for this call frame." },
- { "name": "returnValue", "$ref": "Runtime.RemoteObject", "optional": true, "hidden": true, "description": "The value being returned, if the function is at return point." }
+ { "name": "returnValue", "$ref": "Runtime.RemoteObject", "optional": true, "hidden": true, "description": "The value being returned, if the function is at return point." },
+ { "name": "framePointerHigh", "type": "number", "optional": true, "description": "Higher order bits of the frame pointer" },
+ { "name": "framePointerLow", "type": "number", "optional": true, "description": "Lower order bits of the frame pointer" }
],
"description": "JavaScript call frame. Array of call frames form the call stack."
},
« no previous file with comments | « Source/core/inspector/ScriptDebugListener.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698