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

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

Issue 1324073003: DevTools: expose initial priority of a resource request in Network.requestWillBeSent (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
« no previous file with comments | « Source/devtools/front_end/sdk/NetworkRequest.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 1155 matching lines...) Expand 10 before | Expand all | Expand 10 after
1166 { "name": "sslStart", "type": "number", "description": "Star ted SSL handshake." }, 1166 { "name": "sslStart", "type": "number", "description": "Star ted SSL handshake." },
1167 { "name": "sslEnd", "type": "number", "description": "Finish ed SSL handshake." }, 1167 { "name": "sslEnd", "type": "number", "description": "Finish ed SSL handshake." },
1168 { "name": "workerStart", "type": "number", "description": "S tarted running ServiceWorker.", "hidden": true }, 1168 { "name": "workerStart", "type": "number", "description": "S tarted running ServiceWorker.", "hidden": true },
1169 { "name": "workerReady", "type": "number", "description": "F inished Starting ServiceWorker.", "hidden": true }, 1169 { "name": "workerReady", "type": "number", "description": "F inished Starting ServiceWorker.", "hidden": true },
1170 { "name": "sendStart", "type": "number", "description": "Sta rted sending request." }, 1170 { "name": "sendStart", "type": "number", "description": "Sta rted sending request." },
1171 { "name": "sendEnd", "type": "number", "description": "Finis hed sending request." }, 1171 { "name": "sendEnd", "type": "number", "description": "Finis hed sending request." },
1172 { "name": "receiveHeadersEnd", "type": "number", "descriptio n": "Finished receiving response headers." } 1172 { "name": "receiveHeadersEnd", "type": "number", "descriptio n": "Finished receiving response headers." }
1173 ] 1173 ]
1174 }, 1174 },
1175 { 1175 {
1176 "id": "ResourcePriority",
1177 "type": "string",
1178 "enum": ["VeryLow", "Low", "Medium", "High", "VeryHigh"],
1179 "description": "Loading priority of a resource request."
1180 },
1181 {
1176 "id": "Request", 1182 "id": "Request",
1177 "type": "object", 1183 "type": "object",
1178 "description": "HTTP request data.", 1184 "description": "HTTP request data.",
1179 "properties": [ 1185 "properties": [
1180 { "name": "url", "type": "string", "description": "Request U RL." }, 1186 { "name": "url", "type": "string", "description": "Request U RL." },
1181 { "name": "method", "type": "string", "description": "HTTP r equest method." }, 1187 { "name": "method", "type": "string", "description": "HTTP r equest method." },
1182 { "name": "headers", "$ref": "Headers", "description": "HTTP request headers." }, 1188 { "name": "headers", "$ref": "Headers", "description": "HTTP request headers." },
1183 { "name": "postData", "type": "string", "optional": true, "d escription": "HTTP POST request data." }, 1189 { "name": "postData", "type": "string", "optional": true, "d escription": "HTTP POST request data." },
1184 { "name": "mixedContentType", "optional": true, "type": "str ing", "enum": ["blockable", "optionally-blockable", "none"], "description": "The mixed content status of the request, as defined in http://www.w3.org/TR/mixed-c ontent/" } 1190 { "name": "mixedContentType", "optional": true, "type": "str ing", "enum": ["blockable", "optionally-blockable", "none"], "description": "The mixed content status of the request, as defined in http://www.w3.org/TR/mixed-c ontent/" },
1191 { "name": "initialPriority", "$ref": "ResourcePriority", "de scription": "Priority of the resource request at the time request is sent."}
1185 ] 1192 ]
1186 }, 1193 },
1187 { 1194 {
1188 "id": "CertificateId", 1195 "id": "CertificateId",
1189 "type": "integer", 1196 "type": "integer",
1190 "description": "An internal certificate ID value." 1197 "description": "An internal certificate ID value."
1191 }, 1198 },
1192 { 1199 {
1193 "id": "CertificateSubject", 1200 "id": "CertificateSubject",
1194 "type": "object", 1201 "type": "object",
(...skipping 4026 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
« no previous file with comments | « 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