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

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

Issue 1299493003: Attach mixed content status to resource requests when sent to devtools (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: add contextTypeForInspector() unit test 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
« no previous file with comments | « Source/core/loader/MixedContentCheckerTest.cpp ('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 1162 matching lines...) Expand 10 before | Expand all | Expand 10 after
1173 ] 1173 ]
1174 }, 1174 },
1175 { 1175 {
1176 "id": "Request", 1176 "id": "Request",
1177 "type": "object", 1177 "type": "object",
1178 "description": "HTTP request data.", 1178 "description": "HTTP request data.",
1179 "properties": [ 1179 "properties": [
1180 { "name": "url", "type": "string", "description": "Request U RL." }, 1180 { "name": "url", "type": "string", "description": "Request U RL." },
1181 { "name": "method", "type": "string", "description": "HTTP r equest method." }, 1181 { "name": "method", "type": "string", "description": "HTTP r equest method." },
1182 { "name": "headers", "$ref": "Headers", "description": "HTTP request headers." }, 1182 { "name": "headers", "$ref": "Headers", "description": "HTTP request headers." },
1183 { "name": "postData", "type": "string", "optional": true, "d escription": "HTTP POST request data." } 1183 { "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/" }
1184 ] 1185 ]
1185 }, 1186 },
1186 { 1187 {
1187 "id": "CertificateId", 1188 "id": "CertificateId",
1188 "type": "integer", 1189 "type": "integer",
1189 "description": "An internal certificate ID value." 1190 "description": "An internal certificate ID value."
1190 }, 1191 },
1191 { 1192 {
1192 "id": "CertificateSubject", 1193 "id": "CertificateSubject",
1193 "type": "object", 1194 "type": "object",
(...skipping 3953 matching lines...) Expand 10 before | Expand all | Expand 10 after
5147 ], 5148 ],
5148 "returns": [ 5149 "returns": [
5149 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5150 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5150 ], 5151 ],
5151 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5152 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5152 "hidden": true 5153 "hidden": true
5153 } 5154 }
5154 ] 5155 ]
5155 }] 5156 }]
5156 } 5157 }
OLDNEW
« no previous file with comments | « Source/core/loader/MixedContentCheckerTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698