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

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

Issue 2066483009: Expose SSLInfo::pkp_bypassed to devtools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove signal and HTTP header files Created 4 years, 5 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 877 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 } 888 }
889 ], 889 ],
890 "events": [ 890 "events": [
891 { 891 {
892 "name": "securityStateChanged", 892 "name": "securityStateChanged",
893 "description": "The security state of the page changed.", 893 "description": "The security state of the page changed.",
894 "parameters": [ 894 "parameters": [
895 { "name": "securityState", "$ref": "SecurityState", "descrip tion": "Security state." }, 895 { "name": "securityState", "$ref": "SecurityState", "descrip tion": "Security state." },
896 { "name": "explanations", "type": "array", "items": { "$ref" : "SecurityStateExplanation" }, "description": "List of explanations for the sec urity state. If the overall security state is `insecure` or `warning`, at least one corresponding explanation should be included.", "optional": true }, 896 { "name": "explanations", "type": "array", "items": { "$ref" : "SecurityStateExplanation" }, "description": "List of explanations for the sec urity state. If the overall security state is `insecure` or `warning`, at least one corresponding explanation should be included.", "optional": true },
897 { "name": "mixedContentStatus", "$ref": "MixedContentStatus" , "description": "Information about mixed content on the page.", "optional": tru e }, 897 { "name": "mixedContentStatus", "$ref": "MixedContentStatus" , "description": "Information about mixed content on the page.", "optional": tru e },
898 { "name": "schemeIsCryptographic", "type": "boolean", "descr iption": "True if the page was loaded over cryptographic transport such as HTTPS .", "optional": true } 898 { "name": "schemeIsCryptographic", "type": "boolean", "descr iption": "True if the page was loaded over cryptographic transport such as HTTPS .", "optional": true },
899 » » { "name": "pkpBypassed", "type": "boolean", "description": " True if pinning was bypassed due to a local trust anchor", "optional": "true" }
lgarron 2016/06/28 00:27:41 Please make sure to match indentation. Looks good
estark 2016/06/28 02:43:52 nit: I have a slight preference for "public key pi
dadrian 2016/06/28 18:45:58 Done.
899 ], 900 ],
900 "handlers": ["browser"] 901 "handlers": ["browser"]
901 } 902 }
902 ] 903 ]
903 }, 904 },
904 { 905 {
905 "domain": "Network", 906 "domain": "Network",
906 "description": "Network domain allows tracking network activities of the page. It exposes information about http, file, data and other requests and resp onses, their headers, bodies, timing, etc.", 907 "description": "Network domain allows tracking network activities of the page. It exposes information about http, file, data and other requests and resp onses, their headers, bodies, timing, etc.",
907 "dependencies": ["Runtime", "Security"], 908 "dependencies": ["Runtime", "Security"],
908 "types": [ 909 "types": [
(...skipping 3366 matching lines...) Expand 10 before | Expand all | Expand 10 after
4275 "description": "Dispatches protocol message from the target with given id.", 4276 "description": "Dispatches protocol message from the target with given id.",
4276 "parameters": [ 4277 "parameters": [
4277 { "name": "targetId", "$ref": "TargetID" }, 4278 { "name": "targetId", "$ref": "TargetID" },
4278 { "name": "message", "type": "string" } 4279 { "name": "message", "type": "string" }
4279 ], 4280 ],
4280 "handlers": ["browser"] 4281 "handlers": ["browser"]
4281 } 4282 }
4282 ] 4283 ]
4283 }] 4284 }]
4284 } 4285 }
OLDNEW
« components/security_state/security_state_model.cc ('K') | « content/public/common/ssl_status.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698