| Index: third_party/WebKit/Source/devtools/protocol.json
|
| diff --git a/third_party/WebKit/Source/devtools/protocol.json b/third_party/WebKit/Source/devtools/protocol.json
|
| index a423a3afa86cc34613c5c6bd85499a0c935a19a2..7af6058bdae2262a36e440a769f726a10cac5222 100644
|
| --- a/third_party/WebKit/Source/devtools/protocol.json
|
| +++ b/third_party/WebKit/Source/devtools/protocol.json
|
| @@ -1242,6 +1242,16 @@
|
| ]
|
| },
|
| {
|
| + "id": "CertificateValidationDetails",
|
| + "type": "object",
|
| + "description": "Details about the validation status of a request's certificate.",
|
| + "properties": [
|
| + { "name": "numUnknownScts", "type": "integer", "description": "The number of SCTs from unknown logs." },
|
| + { "name": "numInvalidScts", "type": "integer", "description": "The number of invalid SCTs." },
|
| + { "name": "numValidScts", "type": "integer", "description": "The number of valid SCTs." }
|
| + ]
|
| + },
|
| + {
|
| "id": "SecurityDetails",
|
| "type": "object",
|
| "description": "Security details about a request.",
|
| @@ -1250,7 +1260,8 @@
|
| { "name": "keyExchange", "type": "string", "description": "Key Exchange used by the connection." },
|
| { "name": "cipher", "type": "string", "description": "Cipher name." },
|
| { "name": "mac", "type": "string", "optional": true, "description": "TLS MAC. Note that AEAD ciphers do not have separate MACs." },
|
| - { "name": "certificateId", "$ref": "CertificateId", "description": "Certificate ID value." }
|
| + { "name": "certificateId", "$ref": "CertificateId", "description": "Certificate ID value." },
|
| + { "name": "certificateValidationDetails", "$ref": "CertificateValidationDetails", "optional": true, "description": "Validation details for the request's certficate." }
|
| ]
|
| },
|
| {
|
|
|