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

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

Issue 1772603002: Addition of Certificate Transparency details to Security panel of DevTools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed SignedCertificateTimestampStore and SignedCertificateTimestampIDStatus(List) Created 4 years, 9 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 1270 matching lines...) Expand 10 before | Expand all | Expand 10 after
1281 "id": "CertificateValidationDetails", 1281 "id": "CertificateValidationDetails",
1282 "type": "object", 1282 "type": "object",
1283 "description": "Details about the validation status of a request 's certificate.", 1283 "description": "Details about the validation status of a request 's certificate.",
1284 "properties": [ 1284 "properties": [
1285 { "name": "numUnknownScts", "type": "integer", "description" : "The number of SCTs from unknown logs." }, 1285 { "name": "numUnknownScts", "type": "integer", "description" : "The number of SCTs from unknown logs." },
1286 { "name": "numInvalidScts", "type": "integer", "description" : "The number of invalid SCTs." }, 1286 { "name": "numInvalidScts", "type": "integer", "description" : "The number of invalid SCTs." },
1287 { "name": "numValidScts", "type": "integer", "description": "The number of valid SCTs." } 1287 { "name": "numValidScts", "type": "integer", "description": "The number of valid SCTs." }
1288 ] 1288 ]
1289 }, 1289 },
1290 { 1290 {
1291 "id": "SignedCertificateTimestamp",
1292 "type" : "object",
1293 "description": "Details of a signed certificate timestamp (SCT). ",
1294 "properties": [
1295 { "name": "status", "type": "string", "description": "Va lidation status." },
1296 { "name": "origin", "type": "string", "description": "Or igin." },
1297 { "name": "version", "type": "string", "description": "V ersion." },
1298 { "name": "logDescription", "type": "string", "descripti on": "Log name / description." },
1299 { "name": "logId", "type": "string", "description": "Log ID." },
1300 { "name": "timestamp", "$ref": "Timestamp", "description ": "Issuance date." },
1301 { "name": "hashAlgorithm", "type": "string", "descriptio n": "Hash algorithm." },
1302 { "name": "signatureAlgorithm", "type": "string", "descr iption": "Signature algorithm." },
1303 { "name": "signatureData", "type": "string", "descriptio n": "Signature data" }
1304 ]
1305 },
1306 {
1291 "id": "SecurityDetails", 1307 "id": "SecurityDetails",
1292 "type": "object", 1308 "type": "object",
1293 "description": "Security details about a request.", 1309 "description": "Security details about a request.",
1294 "properties": [ 1310 "properties": [
1295 { "name": "protocol", "type": "string", "description": "Prot ocol name (e.g. \"TLS 1.2\" or \"QUIC\")." }, 1311 { "name": "protocol", "type": "string", "description": "Prot ocol name (e.g. \"TLS 1.2\" or \"QUIC\")." },
1296 { "name": "keyExchange", "type": "string", "description": "K ey Exchange used by the connection." }, 1312 { "name": "keyExchange", "type": "string", "description": "K ey Exchange used by the connection." },
1297 { "name": "cipher", "type": "string", "description": "Cipher name." }, 1313 { "name": "cipher", "type": "string", "description": "Cipher name." },
1298 { "name": "mac", "type": "string", "optional": true, "descri ption": "TLS MAC. Note that AEAD ciphers do not have separate MACs." }, 1314 { "name": "mac", "type": "string", "optional": true, "descri ption": "TLS MAC. Note that AEAD ciphers do not have separate MACs." },
1299 { "name": "certificateId", "$ref": "CertificateId", "descrip tion": "Certificate ID value." }, 1315 { "name": "certificateId", "$ref": "CertificateId", "descrip tion": "Certificate ID value." },
1300 { "name": "certificateValidationDetails", "$ref": "Certifica teValidationDetails", "optional": true, "description": "Validation details for t he request's certficate." } 1316 { "name": "certificateValidationDetails", "$ref": "Certifica teValidationDetails", "optional": true, "description": "Validation details for t he request's certficate." },
1317 { "name": "signedCertificateTimestampList", "type": "array", "items": { "$ref": "SignedCertificateTimestamp" }, "description": "List of sign ed certificate timestamps (SCTs)." }
1301 ] 1318 ]
1302 }, 1319 },
1303 { 1320 {
1304 "id": "BlockedReason", 1321 "id": "BlockedReason",
1305 "type": "string", 1322 "type": "string",
1306 "description": "The reason why request was blocked.", 1323 "description": "The reason why request was blocked.",
1307 "enum": ["csp", "mixed-content", "origin", "inspector", "other"] , 1324 "enum": ["csp", "mixed-content", "origin", "inspector", "other"] ,
1308 "hidden": true 1325 "hidden": true
1309 }, 1326 },
1310 { 1327 {
(...skipping 3844 matching lines...) Expand 10 before | Expand all | Expand 10 after
5155 ], 5172 ],
5156 "returns": [ 5173 "returns": [
5157 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5174 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5158 ], 5175 ],
5159 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5176 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5160 "hidden": true 5177 "hidden": true
5161 } 5178 }
5162 ] 5179 ]
5163 }] 5180 }]
5164 } 5181 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698