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

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

Issue 1309033003: [DevTools] Show blocked requests in network log. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: tyo 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 1529 matching lines...) Expand 10 before | Expand all | Expand 10 after
1540 ] 1540 ]
1541 }, 1541 },
1542 { 1542 {
1543 "name": "loadingFailed", 1543 "name": "loadingFailed",
1544 "description": "Fired when HTTP request has failed to load.", 1544 "description": "Fired when HTTP request has failed to load.",
1545 "parameters": [ 1545 "parameters": [
1546 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1546 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1547 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1547 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1548 { "name": "type", "$ref": "Page.ResourceType", "description" : "Resource type." }, 1548 { "name": "type", "$ref": "Page.ResourceType", "description" : "Resource type." },
1549 { "name": "errorText", "type": "string", "description": "Use r friendly error message." }, 1549 { "name": "errorText", "type": "string", "description": "Use r friendly error message." },
1550 { "name": "canceled", "type": "boolean", "optional": true, " description": "True if loading was canceled." } 1550 { "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." }
1551 ] 1552 ]
1552 }, 1553 },
1553 { 1554 {
1554 "name": "webSocketWillSendHandshakeRequest", 1555 "name": "webSocketWillSendHandshakeRequest",
1555 "description": "Fired when WebSocket is about to initiate handsh ake.", 1556 "description": "Fired when WebSocket is about to initiate handsh ake.",
1556 "parameters": [ 1557 "parameters": [
1557 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1558 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1558 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1559 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1559 { "name": "wallTime", "$ref": "Timestamp", "hidden": true, " description": "UTC Timestamp." }, 1560 { "name": "wallTime", "$ref": "Timestamp", "hidden": true, " description": "UTC Timestamp." },
1560 { "name": "request", "$ref": "WebSocketRequest", "descriptio n": "WebSocket request data." } 1561 { "name": "request", "$ref": "WebSocketRequest", "descriptio n": "WebSocket request data." }
(...skipping 3610 matching lines...) Expand 10 before | Expand all | Expand 10 after
5171 ], 5172 ],
5172 "returns": [ 5173 "returns": [
5173 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5174 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5174 ], 5175 ],
5175 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5176 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5176 "hidden": true 5177 "hidden": true
5177 } 5178 }
5178 ] 5179 ]
5179 }] 5180 }]
5180 } 5181 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698