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

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: 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 1169 matching lines...) Expand 10 before | Expand all | Expand 10 after
1180 ] 1180 ]
1181 }, 1181 },
1182 { 1182 {
1183 "id": "Request", 1183 "id": "Request",
1184 "type": "object", 1184 "type": "object",
1185 "description": "HTTP request data.", 1185 "description": "HTTP request data.",
1186 "properties": [ 1186 "properties": [
1187 { "name": "url", "type": "string", "description": "Request U RL." }, 1187 { "name": "url", "type": "string", "description": "Request U RL." },
1188 { "name": "method", "type": "string", "description": "HTTP r equest method." }, 1188 { "name": "method", "type": "string", "description": "HTTP r equest method." },
1189 { "name": "headers", "$ref": "Headers", "description": "HTTP request headers." }, 1189 { "name": "headers", "$ref": "Headers", "description": "HTTP request headers." },
1190 { "name": "postData", "type": "string", "optional": true, "d escription": "HTTP POST request data." } 1190 { "name": "postData", "type": "string", "optional": true, "d escription": "HTTP POST request data." },
1191 { "name": "mixedContentStatus", "optional": true, "type": "s tring", "enum": ["active", "passive", "none"], "description": "The mixed content status of the request: 'active' if the requested resource was treated as active mixed content, 'passive' if it was treated as passive mixed content, or 'none' if it was not mixed content." }
1191 ] 1192 ]
1192 }, 1193 },
1193 { 1194 {
1194 "id": "CertificateId", 1195 "id": "CertificateId",
1195 "type": "integer", 1196 "type": "integer",
1196 "description": "An internal certificate ID value." 1197 "description": "An internal certificate ID value."
1197 }, 1198 },
1198 { 1199 {
1199 "id": "CertificateSubject", 1200 "id": "CertificateSubject",
1200 "type": "object", 1201 "type": "object",
(...skipping 3946 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

Powered by Google App Engine
This is Rietveld 408576698