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

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: 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 1276 matching lines...) Expand 10 before | Expand all | Expand 10 after
1287 { 1287 {
1288 "id": "CertificateValidationDetails", 1288 "id": "CertificateValidationDetails",
1289 "type": "object", 1289 "type": "object",
1290 "description": "Details about the validation status of a request 's certificate.", 1290 "description": "Details about the validation status of a request 's certificate.",
1291 "properties": [ 1291 "properties": [
1292 { "name": "numUnknownScts", "type": "integer", "description" : "The number of SCTs from unknown logs." }, 1292 { "name": "numUnknownScts", "type": "integer", "description" : "The number of SCTs from unknown logs." },
1293 { "name": "numInvalidScts", "type": "integer", "description" : "The number of invalid SCTs." }, 1293 { "name": "numInvalidScts", "type": "integer", "description" : "The number of invalid SCTs." },
1294 { "name": "numValidScts", "type": "integer", "description": "The number of valid SCTs." } 1294 { "name": "numValidScts", "type": "integer", "description": "The number of valid SCTs." }
1295 ] 1295 ]
1296 }, 1296 },
1297 {
1298 "id": "SignedCertificateTimestamp",
1299 "type" : "object",
1300 "description": "Details of a signed certificate timestamp (SCT).",
1301 "properties": [
1302 { "name": "status", "type": "string", "d escription": "Validation status." },
1303 { "name": "origin", "type": "string", "d escription": "Origin." },
1304 { "name": "version", "type": "string", " description": "Version." },
1305 { "name": "logDescription", "type": "str ing", "description": "Log name / description." },
1306 { "name": "logId", "type": "string", "de scription": "Log ID." },
1307 { "name": "timestamp", "$ref": "Timestam p", "description": "Issuance date." },
1308 { "name": "hashAlgorithm", "type": "stri ng", "description": "Hash algorithm." },
1309 { "name": "signatureAlgorithm", "type": "string", "description": "Signature algorithm." },
1310 { "name": "signatureData", "type": "stri ng", "description": "Signature data" }
1311 ]
1312 },
1297 { 1313 {
1298 "id": "SecurityDetails", 1314 "id": "SecurityDetails",
1299 "type": "object", 1315 "type": "object",
1300 "description": "Security details about a request.", 1316 "description": "Security details about a request.",
1301 "properties": [ 1317 "properties": [
1302 { "name": "protocol", "type": "string", "description": "Prot ocol name (e.g. \"TLS 1.2\" or \"QUIC\")." }, 1318 { "name": "protocol", "type": "string", "description": "Prot ocol name (e.g. \"TLS 1.2\" or \"QUIC\")." },
1303 { "name": "keyExchange", "type": "string", "description": "K ey Exchange used by the connection." }, 1319 { "name": "keyExchange", "type": "string", "description": "K ey Exchange used by the connection." },
1304 { "name": "cipher", "type": "string", "description": "Cipher name." }, 1320 { "name": "cipher", "type": "string", "description": "Cipher name." },
1305 { "name": "mac", "type": "string", "optional": true, "descri ption": "TLS MAC. Note that AEAD ciphers do not have separate MACs." }, 1321 { "name": "mac", "type": "string", "optional": true, "descri ption": "TLS MAC. Note that AEAD ciphers do not have separate MACs." },
1306 { "name": "certificateId", "$ref": "CertificateId", "descrip tion": "Certificate ID value." }, 1322 { "name": "certificateId", "$ref": "CertificateId", "descrip tion": "Certificate ID value." },
1307 { "name": "certificateValidationDetails", "$ref": "Certifica teValidationDetails", "optional": true, "description": "Validation details for t he request's certficate." } 1323 { "name": "certificateValidationDetails", "$ref": "Certifica teValidationDetails", "optional": true, "description": "Validation details for t he request's certficate." },
1324 » » » » » { "name": "signedCertificateTimestampLis t", "type": "array", "items": { "$ref": "SignedCertificateTimestamp" }, "descrip tion": "List of signed certificate timestamps (SCTs)." }
1308 ] 1325 ]
1309 }, 1326 },
1310 { 1327 {
1311 "id": "BlockedReason", 1328 "id": "BlockedReason",
1312 "type": "string", 1329 "type": "string",
1313 "description": "The reason why request was blocked.", 1330 "description": "The reason why request was blocked.",
1314 "enum": ["csp", "mixed-content", "origin", "inspector", "other"] , 1331 "enum": ["csp", "mixed-content", "origin", "inspector", "other"] ,
1315 "hidden": true 1332 "hidden": true
1316 }, 1333 },
1317 { 1334 {
(...skipping 3873 matching lines...) Expand 10 before | Expand all | Expand 10 after
5191 ], 5208 ],
5192 "returns": [ 5209 "returns": [
5193 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5210 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5194 ], 5211 ],
5195 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5212 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5196 "hidden": true 5213 "hidden": true
5197 } 5214 }
5198 ] 5215 ]
5199 }] 5216 }]
5200 } 5217 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698