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

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

Issue 1301823003: Add neutral as a SecurityState in the Security domain. (1/4) (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
« no previous file with comments | « no previous file | 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 1065 matching lines...) Expand 10 before | Expand all | Expand 10 after
1076 ] 1076 ]
1077 }, 1077 },
1078 { 1078 {
1079 "domain": "Security", 1079 "domain": "Security",
1080 "description": "Security", 1080 "description": "Security",
1081 "hidden": true, 1081 "hidden": true,
1082 "types": [ 1082 "types": [
1083 { 1083 {
1084 "id": "SecurityState", 1084 "id": "SecurityState",
1085 "type": "string", 1085 "type": "string",
1086 "enum": ["unknown", "http", "insecure", "warning", "secure"], 1086 "enum": ["unknown", "http", "neutral", "insecure", "warning", "s ecure"],
1087 "description": "The security level of a page or resource." 1087 "description": "The security level of a page or resource."
1088 }, 1088 },
1089 { 1089 {
1090 "id": "SecurityStateExplanation", 1090 "id": "SecurityStateExplanation",
1091 "type": "object", 1091 "type": "object",
1092 "properties": [ 1092 "properties": [
1093 { "name": "securityState", "$ref": "SecurityState", "descrip tion": "Security state representing the severity of the factor being explained." }, 1093 { "name": "securityState", "$ref": "SecurityState", "descrip tion": "Security state representing the severity of the factor being explained." },
1094 { "name": "summary", "type": "string", "description": "Short phrase describing the type of factor." }, 1094 { "name": "summary", "type": "string", "description": "Short phrase describing the type of factor." },
1095 { "name": "description", "type": "string", "description": "F ull text explanation of the factor." } 1095 { "name": "description", "type": "string", "description": "F ull text explanation of the factor." }
1096 ], 1096 ],
(...skipping 4054 matching lines...) Expand 10 before | Expand all | Expand 10 after
5151 ], 5151 ],
5152 "returns": [ 5152 "returns": [
5153 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5153 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5154 ], 5154 ],
5155 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5155 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5156 "hidden": true 5156 "hidden": true
5157 } 5157 }
5158 ] 5158 ]
5159 }] 5159 }]
5160 } 5160 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698