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

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

Issue 302093003: Show the correct resource type when XHR fails in the inspector. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
« no previous file with comments | « Source/devtools/front_end/sdk/NetworkManager.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 1234 matching lines...) Expand 10 before | Expand all | Expand 10 after
1245 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1245 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1246 { "name": "encodedDataLength", "type": "number", "descriptio n": "Total number of bytes received for this request." } 1246 { "name": "encodedDataLength", "type": "number", "descriptio n": "Total number of bytes received for this request." }
1247 ] 1247 ]
1248 }, 1248 },
1249 { 1249 {
1250 "name": "loadingFailed", 1250 "name": "loadingFailed",
1251 "description": "Fired when HTTP request has failed to load.", 1251 "description": "Fired when HTTP request has failed to load.",
1252 "parameters": [ 1252 "parameters": [
1253 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1253 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1254 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1254 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1255 { "name": "type", "$ref": "Page.ResourceType", "description" : "Resource type." },
1255 { "name": "errorText", "type": "string", "description": "Use r friendly error message." }, 1256 { "name": "errorText", "type": "string", "description": "Use r friendly error message." },
1256 { "name": "canceled", "type": "boolean", "optional": true, " description": "True if loading was canceled." } 1257 { "name": "canceled", "type": "boolean", "optional": true, " description": "True if loading was canceled." }
1257 ] 1258 ]
1258 }, 1259 },
1259 { 1260 {
1260 "name": "webSocketWillSendHandshakeRequest", 1261 "name": "webSocketWillSendHandshakeRequest",
1261 "description": "Fired when WebSocket is about to initiate handsh ake.", 1262 "description": "Fired when WebSocket is about to initiate handsh ake.",
1262 "parameters": [ 1263 "parameters": [
1263 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1264 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1264 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1265 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
(...skipping 2872 matching lines...) Expand 10 before | Expand all | Expand 10 after
4137 { 4138 {
4138 "name": "dataAvailable", 4139 "name": "dataAvailable",
4139 "parameters": [ 4140 "parameters": [
4140 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4141 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4141 ], 4142 ],
4142 "handlers": ["browser", "frontend"] 4143 "handlers": ["browser", "frontend"]
4143 } 4144 }
4144 ] 4145 ]
4145 }] 4146 }]
4146 } 4147 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sdk/NetworkManager.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698