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

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

Issue 1327593003: DevTools: [security] open certificate viewer from devtools security overview (blink) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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 | Annotate | Revision Log
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 1067 matching lines...) Expand 10 before | Expand all | Expand 10 after
1078 "type": "string", 1078 "type": "string",
1079 "enum": ["unknown", "neutral", "insecure", "warning", "secure"], 1079 "enum": ["unknown", "neutral", "insecure", "warning", "secure"],
1080 "description": "The security level of a page or resource." 1080 "description": "The security level of a page or resource."
1081 }, 1081 },
1082 { 1082 {
1083 "id": "SecurityStateExplanation", 1083 "id": "SecurityStateExplanation",
1084 "type": "object", 1084 "type": "object",
1085 "properties": [ 1085 "properties": [
1086 { "name": "securityState", "$ref": "SecurityState", "descrip tion": "Security state representing the severity of the factor being explained." }, 1086 { "name": "securityState", "$ref": "SecurityState", "descrip tion": "Security state representing the severity of the factor being explained." },
1087 { "name": "summary", "type": "string", "description": "Short phrase describing the type of factor." }, 1087 { "name": "summary", "type": "string", "description": "Short phrase describing the type of factor." },
1088 { "name": "description", "type": "string", "description": "F ull text explanation of the factor." } 1088 { "name": "description", "type": "string", "description": "F ull text explanation of the factor." },
1089 { "name": "certificateId", "$ref": "Network.CertificateId", "optional": true, "description": "Associated certificate id." }
1089 ], 1090 ],
1090 "description": "An explanation of an factor contributing to the security state." 1091 "description": "An explanation of an factor contributing to the security state."
1091 }, 1092 },
1092 { 1093 {
1093 "id": "MixedContentStatus", 1094 "id": "MixedContentStatus",
1094 "type": "object", 1095 "type": "object",
1095 "properties": [ 1096 "properties": [
1096 { "name": "ranInsecureContent", "type": "boolean", "descript ion": "True if the page ran insecure content such as scripts." }, 1097 { "name": "ranInsecureContent", "type": "boolean", "descript ion": "True if the page ran insecure content such as scripts." },
1097 { "name": "displayedInsecureContent", "type": "boolean", "de scription": "True if the page displayed insecure content such as images." }, 1098 { "name": "displayedInsecureContent", "type": "boolean", "de scription": "True if the page displayed insecure content such as images." },
1098 { "name": "ranInsecureContentStyle", "$ref": "SecurityState" , "description": "Security state representing a page that ran insecure content." }, 1099 { "name": "ranInsecureContentStyle", "$ref": "SecurityState" , "description": "Security state representing a page that ran insecure content." },
(...skipping 4130 matching lines...) Expand 10 before | Expand all | Expand 10 after
5229 ], 5230 ],
5230 "returns": [ 5231 "returns": [
5231 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5232 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5232 ], 5233 ],
5233 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5234 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5234 "hidden": true 5235 "hidden": true
5235 } 5236 }
5236 ] 5237 ]
5237 }] 5238 }]
5238 } 5239 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698