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

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

Issue 1259393002: DevTools: add support for logging fetch requests when XHR logging is enabled (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: review comments addressed Created 5 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
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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 } 59 }
60 ] 60 ]
61 }, 61 },
62 { 62 {
63 "domain": "Page", 63 "domain": "Page",
64 "description": "Actions and events related to the inspected page belong to the page domain.", 64 "description": "Actions and events related to the inspected page belong to the page domain.",
65 "types": [ 65 "types": [
66 { 66 {
67 "id": "ResourceType", 67 "id": "ResourceType",
68 "type": "string", 68 "type": "string",
69 "enum": ["Document", "Stylesheet", "Image", "Media", "Font", "Sc ript", "TextTrack", "XHR", "WebSocket", "Other"], 69 "enum": ["Document", "Stylesheet", "Image", "Media", "Font", "Sc ript", "TextTrack", "XHR", "Fetch", "EventSource", "WebSocket", "Other"],
70 "description": "Resource type as it was perceived by the renderi ng engine." 70 "description": "Resource type as it was perceived by the renderi ng engine."
71 }, 71 },
72 { 72 {
73 "id": "FrameId", 73 "id": "FrameId",
74 "type": "string", 74 "type": "string",
75 "description": "Unique frame identifier." 75 "description": "Unique frame identifier."
76 }, 76 },
77 { 77 {
78 "id": "Frame", 78 "id": "Frame",
79 "type": "object", 79 "type": "object",
(...skipping 5006 matching lines...) Expand 10 before | Expand all | Expand 10 after
5086 ], 5086 ],
5087 "returns": [ 5087 "returns": [
5088 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5088 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5089 ], 5089 ],
5090 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5090 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5091 "hidden": true 5091 "hidden": true
5092 } 5092 }
5093 ] 5093 ]
5094 }] 5094 }]
5095 } 5095 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698