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

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

Issue 1589703002: Surface SCT (Signed Certificate Timestamp) counts in the Security panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address latest comments. Created 4 years, 10 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 1224 matching lines...) Expand 10 before | Expand all | Expand 10 after
1235 "type": "object", 1235 "type": "object",
1236 "description": "Details about a request's certificate.", 1236 "description": "Details about a request's certificate.",
1237 "properties": [ 1237 "properties": [
1238 { "name": "subject", "$ref": "CertificateSubject", "descript ion": "Certificate subject." }, 1238 { "name": "subject", "$ref": "CertificateSubject", "descript ion": "Certificate subject." },
1239 { "name": "issuer", "type": "string", "description": "Name o f the issuing CA." }, 1239 { "name": "issuer", "type": "string", "description": "Name o f the issuing CA." },
1240 { "name": "validFrom", "$ref": "Timestamp", "description": " Certificate valid from date." }, 1240 { "name": "validFrom", "$ref": "Timestamp", "description": " Certificate valid from date." },
1241 { "name": "validTo", "$ref": "Timestamp", "description": "Ce rtificate valid to (expiration) date" } 1241 { "name": "validTo", "$ref": "Timestamp", "description": "Ce rtificate valid to (expiration) date" }
1242 ] 1242 ]
1243 }, 1243 },
1244 { 1244 {
1245 "id": "CertificateValidationDetails",
1246 "type": "object",
1247 "description": "Details about the validation status of a request 's certificate.",
1248 "properties": [
1249 { "name": "numUnknownScts", "type": "integer", "description" : "The number of SCTs from unknown logs." },
1250 { "name": "numInvalidScts", "type": "integer", "description" : "The number of invalid SCTs." },
1251 { "name": "numValidScts", "type": "integer", "description": "The number of valid SCTs." }
1252 ]
1253 },
1254 {
1245 "id": "SecurityDetails", 1255 "id": "SecurityDetails",
1246 "type": "object", 1256 "type": "object",
1247 "description": "Security details about a request.", 1257 "description": "Security details about a request.",
1248 "properties": [ 1258 "properties": [
1249 { "name": "protocol", "type": "string", "description": "Prot ocol name (e.g. \"TLS 1.2\" or \"QUIC\")." }, 1259 { "name": "protocol", "type": "string", "description": "Prot ocol name (e.g. \"TLS 1.2\" or \"QUIC\")." },
1250 { "name": "keyExchange", "type": "string", "description": "K ey Exchange used by the connection." }, 1260 { "name": "keyExchange", "type": "string", "description": "K ey Exchange used by the connection." },
1251 { "name": "cipher", "type": "string", "description": "Cipher name." }, 1261 { "name": "cipher", "type": "string", "description": "Cipher name." },
1252 { "name": "mac", "type": "string", "optional": true, "descri ption": "TLS MAC. Note that AEAD ciphers do not have separate MACs." }, 1262 { "name": "mac", "type": "string", "optional": true, "descri ption": "TLS MAC. Note that AEAD ciphers do not have separate MACs." },
1253 { "name": "certificateId", "$ref": "CertificateId", "descrip tion": "Certificate ID value." } 1263 { "name": "certificateId", "$ref": "CertificateId", "descrip tion": "Certificate ID value." },
1264 { "name": "certificateValidationDetails", "$ref": "Certifica teValidationDetails", "optional": true, "description": "Validation details for t he request's certficate." }
1254 ] 1265 ]
1255 }, 1266 },
1256 { 1267 {
1257 "id": "BlockedReason", 1268 "id": "BlockedReason",
1258 "type": "string", 1269 "type": "string",
1259 "description": "The reason why request was blocked.", 1270 "description": "The reason why request was blocked.",
1260 "enum": ["csp", "mixed-content", "origin", "inspector", "other"] , 1271 "enum": ["csp", "mixed-content", "origin", "inspector", "other"] ,
1261 "hidden": true 1272 "hidden": true
1262 }, 1273 },
1263 { 1274 {
(...skipping 4065 matching lines...) Expand 10 before | Expand all | Expand 10 after
5329 ], 5340 ],
5330 "returns": [ 5341 "returns": [
5331 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5342 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5332 ], 5343 ],
5333 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5344 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5334 "hidden": true 5345 "hidden": true
5335 } 5346 }
5336 ] 5347 ]
5337 }] 5348 }]
5338 } 5349 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698