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

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: renamed a variable Created 4 years, 7 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 1295 matching lines...) Expand 10 before | Expand all | Expand 10 after
1306 "id": "CertificateValidationDetails", 1306 "id": "CertificateValidationDetails",
1307 "type": "object", 1307 "type": "object",
1308 "description": "Details about the validation status of a request 's certificate.", 1308 "description": "Details about the validation status of a request 's certificate.",
1309 "properties": [ 1309 "properties": [
1310 { "name": "numUnknownScts", "type": "integer", "description" : "The number of SCTs from unknown logs." }, 1310 { "name": "numUnknownScts", "type": "integer", "description" : "The number of SCTs from unknown logs." },
1311 { "name": "numInvalidScts", "type": "integer", "description" : "The number of invalid SCTs." }, 1311 { "name": "numInvalidScts", "type": "integer", "description" : "The number of invalid SCTs." },
1312 { "name": "numValidScts", "type": "integer", "description": "The number of valid SCTs." } 1312 { "name": "numValidScts", "type": "integer", "description": "The number of valid SCTs." }
1313 ] 1313 ]
1314 }, 1314 },
1315 { 1315 {
1316 "id": "SignedCertificateTimestamp",
1317 "type" : "object",
1318 "description": "Details of a signed certificate timestamp (SCT). ",
1319 "properties": [
1320 { "name": "status", "type": "string", "description": "Va lidation status." },
1321 { "name": "origin", "type": "string", "description": "Or igin." },
1322 { "name": "version", "type": "string", "description": "V ersion." },
1323 { "name": "logDescription", "type": "string", "descripti on": "Log name / description." },
1324 { "name": "logId", "type": "string", "description": "Log ID." },
1325 { "name": "timestamp", "$ref": "Timestamp", "description ": "Issuance date." },
1326 { "name": "hashAlgorithm", "type": "string", "descriptio n": "Hash algorithm." },
1327 { "name": "signatureAlgorithm", "type": "string", "descr iption": "Signature algorithm." },
1328 { "name": "signatureData", "type": "string", "descriptio n": "Signature data" }
1329 ]
1330 },
1331 {
1316 "id": "SecurityDetails", 1332 "id": "SecurityDetails",
pfeldman 2016/05/23 16:53:43 This seems like a lot to send per request. What is
estark 2016/05/27 17:14:10 This information is specific to each request, thou
1317 "type": "object", 1333 "type": "object",
1318 "description": "Security details about a request.", 1334 "description": "Security details about a request.",
1319 "properties": [ 1335 "properties": [
1320 { "name": "protocol", "type": "string", "description": "Prot ocol name (e.g. \"TLS 1.2\" or \"QUIC\")." }, 1336 { "name": "protocol", "type": "string", "description": "Prot ocol name (e.g. \"TLS 1.2\" or \"QUIC\")." },
1321 { "name": "keyExchange", "type": "string", "description": "K ey Exchange used by the connection." }, 1337 { "name": "keyExchange", "type": "string", "description": "K ey Exchange used by the connection." },
1322 { "name": "cipher", "type": "string", "description": "Cipher name." }, 1338 { "name": "cipher", "type": "string", "description": "Cipher name." },
1323 { "name": "mac", "type": "string", "optional": true, "descri ption": "TLS MAC. Note that AEAD ciphers do not have separate MACs." }, 1339 { "name": "mac", "type": "string", "optional": true, "descri ption": "TLS MAC. Note that AEAD ciphers do not have separate MACs." },
1324 { "name": "certificateId", "$ref": "CertificateId", "descrip tion": "Certificate ID value." }, 1340 { "name": "certificateId", "$ref": "CertificateId", "descrip tion": "Certificate ID value." },
1325 { "name": "certificateValidationDetails", "$ref": "Certifica teValidationDetails", "optional": true, "description": "Validation details for t he request's certficate." } 1341 { "name": "certificateValidationDetails", "$ref": "Certifica teValidationDetails", "optional": true, "description": "Validation details for t he request's certficate." },
1342 { "name": "signedCertificateTimestampList", "type": "array", "items": { "$ref": "SignedCertificateTimestamp" }, "description": "List of sign ed certificate timestamps (SCTs)." }
1326 ] 1343 ]
1327 }, 1344 },
1328 { 1345 {
1329 "id": "BlockedReason", 1346 "id": "BlockedReason",
1330 "type": "string", 1347 "type": "string",
1331 "description": "The reason why request was blocked.", 1348 "description": "The reason why request was blocked.",
1332 "enum": ["csp", "mixed-content", "origin", "inspector", "other"] , 1349 "enum": ["csp", "mixed-content", "origin", "inspector", "other"] ,
1333 "hidden": true 1350 "hidden": true
1334 }, 1351 },
1335 { 1352 {
(...skipping 3821 matching lines...) Expand 10 before | Expand all | Expand 10 after
5157 "parameters": [ 5174 "parameters": [
5158 { "name": "origin", "type": "string", "description": "Securi ty origin." }, 5175 { "name": "origin", "type": "string", "description": "Securi ty origin." },
5159 { "name": "storageTypes", "type": "string", "description": " Comma separated origin names." } 5176 { "name": "storageTypes", "type": "string", "description": " Comma separated origin names." }
5160 ], 5177 ],
5161 "description": "Clears storage for origin.", 5178 "description": "Clears storage for origin.",
5162 "handlers": ["browser"] 5179 "handlers": ["browser"]
5163 } 5180 }
5164 ] 5181 ]
5165 }] 5182 }]
5166 } 5183 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698