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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: Source/devtools/protocol.json
diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json
index 13a7ad16ac8738b6915815fb3b2e542f0039dfc9..0856efba7429790ecd33ef71dfe4c89768f53cd7 100644
--- a/Source/devtools/protocol.json
+++ b/Source/devtools/protocol.json
@@ -1187,7 +1187,8 @@
{ "name": "url", "type": "string", "description": "Request URL." },
{ "name": "method", "type": "string", "description": "HTTP request method." },
{ "name": "headers", "$ref": "Headers", "description": "HTTP request headers." },
- { "name": "postData", "type": "string", "optional": true, "description": "HTTP POST request data." }
+ { "name": "postData", "type": "string", "optional": true, "description": "HTTP POST request data." },
+ { "name": "mixedContentStatus", "optional": true, "type": "string", "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." }
]
},
{

Powered by Google App Engine
This is Rietveld 408576698