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

Side by Side Diff: third_party/WebKit/Source/core/inspector/browser_protocol.json

Issue 2751023005: DevTools: expose linkPreload bit on the network request (Closed)
Patch Set: Created 3 years, 9 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": "2" }, 2 "version": { "major": "1", "minor": "2" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "experimental": true, 5 "experimental": 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 996 matching lines...) Expand 10 before | Expand all | Expand 10 after
1007 "id": "Request", 1007 "id": "Request",
1008 "type": "object", 1008 "type": "object",
1009 "description": "HTTP request data.", 1009 "description": "HTTP request data.",
1010 "properties": [ 1010 "properties": [
1011 { "name": "url", "type": "string", "description": "Request U RL." }, 1011 { "name": "url", "type": "string", "description": "Request U RL." },
1012 { "name": "method", "type": "string", "description": "HTTP r equest method." }, 1012 { "name": "method", "type": "string", "description": "HTTP r equest method." },
1013 { "name": "headers", "$ref": "Headers", "description": "HTTP request headers." }, 1013 { "name": "headers", "$ref": "Headers", "description": "HTTP request headers." },
1014 { "name": "postData", "type": "string", "optional": true, "d escription": "HTTP POST request data." }, 1014 { "name": "postData", "type": "string", "optional": true, "d escription": "HTTP POST request data." },
1015 { "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/" }, 1015 { "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/" },
1016 { "name": "initialPriority", "$ref": "ResourcePriority", "de scription": "Priority of the resource request at the time request is sent."}, 1016 { "name": "initialPriority", "$ref": "ResourcePriority", "de scription": "Priority of the resource request at the time request is sent."},
1017 { "name": "referrerPolicy", "type": "string", "enum": [ "uns afe-url", "no-referrer-when-downgrade", "no-referrer", "origin", "origin-when-cr oss-origin", "no-referrer-when-downgrade-origin-when-cross-origin" ], "descripti on": "The referrer policy of the request, as defined in https://www.w3.org/TR/re ferrer-policy/" } 1017 { "name": "referrerPolicy", "type": "string", "enum": [ "uns afe-url", "no-referrer-when-downgrade", "no-referrer", "origin", "origin-when-cr oss-origin", "no-referrer-when-downgrade-origin-when-cross-origin" ], "descripti on": "The referrer policy of the request, as defined in https://www.w3.org/TR/re ferrer-policy/" },
1018 { "name": "isLinkPreload", "type": "boolean", "optional": tr ue, "description": "Whether is loaded via link preload." }
1018 ] 1019 ]
1019 }, 1020 },
1020 { 1021 {
1021 "id": "SignedCertificateTimestamp", 1022 "id": "SignedCertificateTimestamp",
1022 "type" : "object", 1023 "type" : "object",
1023 "description": "Details of a signed certificate timestamp (SCT). ", 1024 "description": "Details of a signed certificate timestamp (SCT). ",
1024 "properties": [ 1025 "properties": [
1025 { "name": "status", "type": "string", "description": "Valida tion status." }, 1026 { "name": "status", "type": "string", "description": "Valida tion status." },
1026 { "name": "origin", "type": "string", "description": "Origin ." }, 1027 { "name": "origin", "type": "string", "description": "Origin ." },
1027 { "name": "logDescription", "type": "string", "description": "Log name / description." }, 1028 { "name": "logDescription", "type": "string", "description": "Log name / description." },
(...skipping 3518 matching lines...) Expand 10 before | Expand all | Expand 10 after
4546 "name": "accepted", 4547 "name": "accepted",
4547 "description": "Informs that port was successfully bound and got a specified connection id.", 4548 "description": "Informs that port was successfully bound and got a specified connection id.",
4548 "parameters": [ 4549 "parameters": [
4549 {"name": "port", "type": "integer", "description": "Port num ber that was successfully bound." }, 4550 {"name": "port", "type": "integer", "description": "Port num ber that was successfully bound." },
4550 {"name": "connectionId", "type": "string", "description": "C onnection id to be used." } 4551 {"name": "connectionId", "type": "string", "description": "C onnection id to be used." }
4551 ] 4552 ]
4552 } 4553 }
4553 ] 4554 ]
4554 }] 4555 }]
4555 } 4556 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698