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

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

Issue 1315043008: [DevTools] Show blocked requests in Network panel. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: hidden Created 5 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 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 1205 matching lines...) Expand 10 before | Expand all | Expand 10 after
1216 "description": "Security details about a request.", 1216 "description": "Security details about a request.",
1217 "properties": [ 1217 "properties": [
1218 { "name": "protocol", "type": "string", "description": "Prot ocol name (e.g. \"TLS 1.2\" or \"QUIC\"." }, 1218 { "name": "protocol", "type": "string", "description": "Prot ocol name (e.g. \"TLS 1.2\" or \"QUIC\"." },
1219 { "name": "keyExchange", "type": "string", "description": "K ey Exchange used by the connection." }, 1219 { "name": "keyExchange", "type": "string", "description": "K ey Exchange used by the connection." },
1220 { "name": "cipher", "type": "string", "description": "Cipher name." }, 1220 { "name": "cipher", "type": "string", "description": "Cipher name." },
1221 { "name": "mac", "type": "string", "optional": true, "descri ption": "TLS MAC. Note that AEAD ciphers do not have separate MACs." }, 1221 { "name": "mac", "type": "string", "optional": true, "descri ption": "TLS MAC. Note that AEAD ciphers do not have separate MACs." },
1222 { "name": "certificateId", "$ref": "CertificateId", "descrip tion": "Certificate ID value." } 1222 { "name": "certificateId", "$ref": "CertificateId", "descrip tion": "Certificate ID value." }
1223 ] 1223 ]
1224 }, 1224 },
1225 { 1225 {
1226 "id": "BlockedReason",
1227 "type": "string",
1228 "description": "The reason why request was blocked.",
1229 "enum": ["csp", "mixed-content", "origin", "inspector", "other"] ,
1230 "hidden": true
1231 },
1232 {
1226 "id": "Response", 1233 "id": "Response",
1227 "type": "object", 1234 "type": "object",
1228 "description": "HTTP response data.", 1235 "description": "HTTP response data.",
1229 "properties": [ 1236 "properties": [
1230 { "name": "url", "type": "string", "description": "Response URL. This URL can be different from CachedResource.url in case of redirect." }, 1237 { "name": "url", "type": "string", "description": "Response URL. This URL can be different from CachedResource.url in case of redirect." },
1231 { "name": "status", "type": "number", "description": "HTTP r esponse status code." }, 1238 { "name": "status", "type": "number", "description": "HTTP r esponse status code." },
1232 { "name": "statusText", "type": "string", "description": "HT TP response status text." }, 1239 { "name": "statusText", "type": "string", "description": "HT TP response status text." },
1233 { "name": "headers", "$ref": "Headers", "description": "HTTP response headers." }, 1240 { "name": "headers", "$ref": "Headers", "description": "HTTP response headers." },
1234 { "name": "headersText", "type": "string", "optional": true, "description": "HTTP response headers text." }, 1241 { "name": "headersText", "type": "string", "optional": true, "description": "HTTP response headers text." },
1235 { "name": "mimeType", "type": "string", "description": "Reso urce mimeType as determined by the browser." }, 1242 { "name": "mimeType", "type": "string", "description": "Reso urce mimeType as determined by the browser." },
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
1541 }, 1548 },
1542 { 1549 {
1543 "name": "loadingFailed", 1550 "name": "loadingFailed",
1544 "description": "Fired when HTTP request has failed to load.", 1551 "description": "Fired when HTTP request has failed to load.",
1545 "parameters": [ 1552 "parameters": [
1546 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1553 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1547 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1554 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1548 { "name": "type", "$ref": "Page.ResourceType", "description" : "Resource type." }, 1555 { "name": "type", "$ref": "Page.ResourceType", "description" : "Resource type." },
1549 { "name": "errorText", "type": "string", "description": "Use r friendly error message." }, 1556 { "name": "errorText", "type": "string", "description": "Use r friendly error message." },
1550 { "name": "canceled", "type": "boolean", "optional": true, " description": "True if loading was canceled." }, 1557 { "name": "canceled", "type": "boolean", "optional": true, " description": "True if loading was canceled." },
1551 { "name": "blocked", "type": "boolean", "optional": true, "d escription": "True if loading was blocked by inspector." } 1558 { "name": "blockedReason", "$ref": "BlockedReason", "optiona l": true, "description": "The reason why loading was blocked, if any.", "hidden" : true }
1552 ] 1559 ]
1553 }, 1560 },
1554 { 1561 {
1555 "name": "webSocketWillSendHandshakeRequest", 1562 "name": "webSocketWillSendHandshakeRequest",
1556 "description": "Fired when WebSocket is about to initiate handsh ake.", 1563 "description": "Fired when WebSocket is about to initiate handsh ake.",
1557 "parameters": [ 1564 "parameters": [
1558 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1565 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1559 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1566 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1560 { "name": "wallTime", "$ref": "Timestamp", "hidden": true, " description": "UTC Timestamp." }, 1567 { "name": "wallTime", "$ref": "Timestamp", "hidden": true, " description": "UTC Timestamp." },
1561 { "name": "request", "$ref": "WebSocketRequest", "descriptio n": "WebSocket request data." } 1568 { "name": "request", "$ref": "WebSocketRequest", "descriptio n": "WebSocket request data." }
(...skipping 3659 matching lines...) Expand 10 before | Expand all | Expand 10 after
5221 ], 5228 ],
5222 "returns": [ 5229 "returns": [
5223 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5230 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5224 ], 5231 ],
5225 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5232 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5226 "hidden": true 5233 "hidden": true
5227 } 5234 }
5228 ] 5235 ]
5229 }] 5236 }]
5230 } 5237 }
OLDNEW
« Source/core/loader/FrameFetchContext.cpp ('K') | « Source/devtools/front_end/sdk/NetworkRequest.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698