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

Side by Side Diff: Source/devtools/protocol.json

Issue 416843002: DevTools: Send async stack trace with Network.Initiator. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/ui/UIUtils.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1120 matching lines...) Expand 10 before | Expand all | Expand 10 after
1131 ] 1131 ]
1132 }, 1132 },
1133 { 1133 {
1134 "id": "Initiator", 1134 "id": "Initiator",
1135 "type": "object", 1135 "type": "object",
1136 "description": "Information about the request initiator.", 1136 "description": "Information about the request initiator.",
1137 "properties": [ 1137 "properties": [
1138 { "name": "type", "type": "string", "enum": ["parser", "scri pt", "other"], "description": "Type of this initiator." }, 1138 { "name": "type", "type": "string", "enum": ["parser", "scri pt", "other"], "description": "Type of this initiator." },
1139 { "name": "stackTrace", "$ref": "Console.StackTrace", "optio nal": true, "description": "Initiator JavaScript stack trace, set for Script onl y." }, 1139 { "name": "stackTrace", "$ref": "Console.StackTrace", "optio nal": true, "description": "Initiator JavaScript stack trace, set for Script onl y." },
1140 { "name": "url", "type": "string", "optional": true, "descri ption": "Initiator URL, set for Parser type only." }, 1140 { "name": "url", "type": "string", "optional": true, "descri ption": "Initiator URL, set for Parser type only." },
1141 { "name": "lineNumber", "type": "number", "optional": true, "description": "Initiator line number, set for Parser type only." } 1141 { "name": "lineNumber", "type": "number", "optional": true, "description": "Initiator line number, set for Parser type only." },
1142 { "name": "asyncStackTrace", "$ref": "Console.AsyncStackTrac e", "optional": true, "description": "Initiator asynchronous JavaScript stack tr ace, if available.", "hidden": true }
1142 ] 1143 ]
1143 } 1144 }
1144 ], 1145 ],
1145 "commands": [ 1146 "commands": [
1146 { 1147 {
1147 "name": "enable", 1148 "name": "enable",
1148 "description": "Enables network tracking, network events will no w be delivered to the client." 1149 "description": "Enables network tracking, network events will no w be delivered to the client."
1149 }, 1150 },
1150 { 1151 {
1151 "name": "disable", 1152 "name": "disable",
(...skipping 3120 matching lines...) Expand 10 before | Expand all | Expand 10 after
4272 { 4273 {
4273 "name": "dataAvailable", 4274 "name": "dataAvailable",
4274 "parameters": [ 4275 "parameters": [
4275 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4276 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4276 ], 4277 ],
4277 "handlers": ["browser", "frontend"] 4278 "handlers": ["browser", "frontend"]
4278 } 4279 }
4279 ] 4280 ]
4280 }] 4281 }]
4281 } 4282 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/ui/UIUtils.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698