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

Side by Side 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, 4 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 unified diff | Download patch | Annotate | Revision Log
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 2944 matching lines...) Expand 10 before | Expand all | Expand 10 after
2955 }, 2955 },
2956 { 2956 {
2957 "id": "CallFrame", 2957 "id": "CallFrame",
2958 "type": "object", 2958 "type": "object",
2959 "properties": [ 2959 "properties": [
2960 { "name": "callFrameId", "$ref": "CallFrameId", "description ": "Call frame identifier. This identifier is only valid while the virtual machi ne is paused." }, 2960 { "name": "callFrameId", "$ref": "CallFrameId", "description ": "Call frame identifier. This identifier is only valid while the virtual machi ne is paused." },
2961 { "name": "functionName", "type": "string", "description": " Name of the JavaScript function called on this call frame." }, 2961 { "name": "functionName", "type": "string", "description": " Name of the JavaScript function called on this call frame." },
2962 { "name": "location", "$ref": "Location", "description": "Lo cation in the source code." }, 2962 { "name": "location", "$ref": "Location", "description": "Lo cation in the source code." },
2963 { "name": "scopeChain", "type": "array", "items": { "$ref": "Scope" }, "description": "Scope chain for this call frame." }, 2963 { "name": "scopeChain", "type": "array", "items": { "$ref": "Scope" }, "description": "Scope chain for this call frame." },
2964 { "name": "this", "$ref": "Runtime.RemoteObject", "descripti on": "<code>this</code> object for this call frame." }, 2964 { "name": "this", "$ref": "Runtime.RemoteObject", "descripti on": "<code>this</code> object for this call frame." },
2965 { "name": "returnValue", "$ref": "Runtime.RemoteObject", "op tional": true, "hidden": true, "description": "The value being returned, if the function is at return point." } 2965 { "name": "returnValue", "$ref": "Runtime.RemoteObject", "op tional": true, "hidden": true, "description": "The value being returned, if the function is at return point." },
2966 { "name": "timestamp", "type": "number", "optional": true, " description": "Relative ordering of call frames" }
2966 ], 2967 ],
2967 "description": "JavaScript call frame. Array of call frames form the call stack." 2968 "description": "JavaScript call frame. Array of call frames form the call stack."
2968 }, 2969 },
2969 { 2970 {
2970 "id": "StackTrace", 2971 "id": "StackTrace",
2971 "type": "object", 2972 "type": "object",
2972 "properties": [ 2973 "properties": [
2973 { "name": "callFrames", "type": "array", "items": { "$ref": "CallFrame" }, "description": "Call frames of the stack trace." }, 2974 { "name": "callFrames", "type": "array", "items": { "$ref": "CallFrame" }, "description": "Call frames of the stack trace." },
2974 { "name": "description", "type": "string", "optional": true, "description": "String label of this stack trace. For async traces this may be a name of the function that initiated the async call." }, 2975 { "name": "description", "type": "string", "optional": true, "description": "String label of this stack trace. For async traces this may be a name of the function that initiated the async call." },
2975 { "name": "asyncStackTrace", "$ref": "StackTrace", "optional ": true, "description": "Async stack trace, if any." } 2976 { "name": "asyncStackTrace", "$ref": "StackTrace", "optional ": true, "description": "Async stack trace, if any." }
(...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after
4254 { 4255 {
4255 "name": "dataAvailable", 4256 "name": "dataAvailable",
4256 "parameters": [ 4257 "parameters": [
4257 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4258 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4258 ], 4259 ],
4259 "handlers": ["browser", "frontend"] 4260 "handlers": ["browser", "frontend"]
4260 } 4261 }
4261 ] 4262 ]
4262 }] 4263 }]
4263 } 4264 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698