Index: third_party/WebKit/Source/core/inspector/browser_protocol.json |
diff --git a/third_party/WebKit/Source/core/inspector/browser_protocol.json b/third_party/WebKit/Source/core/inspector/browser_protocol.json |
index 3afb00e543e630cd26d55c9845d261c6eb3933c2..5805a0824a7bf367556bd287c6ad86d660d97a0b 100644 |
--- a/third_party/WebKit/Source/core/inspector/browser_protocol.json |
+++ b/third_party/WebKit/Source/core/inspector/browser_protocol.json |
@@ -999,6 +999,21 @@ |
{ "name": "numValidScts", "type": "integer", "description": "The number of valid SCTs." } |
] |
}, |
+ { |
Mike West
2016/06/23 06:48:01
Nit: Please match the indentation from the rest of
dwaxweiler
2016/06/23 11:53:02
Acknowledged.
|
+ "id": "SignedCertificateTimestamp", |
+ "type" : "object", |
+ "description": "Details of a signed certificate timestamp (SCT).", |
+ "properties": [ |
+ { "name": "status", "type": "string", "description": "Validation status." }, |
+ { "name": "origin", "type": "string", "description": "Origin." }, |
+ { "name": "logDescription", "type": "string", "description": "Log name / description." }, |
+ { "name": "logId", "type": "string", "description": "Log ID." }, |
+ { "name": "timestamp", "$ref": "Timestamp", "description": "Issuance date." }, |
+ { "name": "hashAlgorithm", "type": "string", "description": "Hash algorithm." }, |
+ { "name": "signatureAlgorithm", "type": "string", "description": "Signature algorithm." }, |
+ { "name": "signatureData", "type": "string", "description": "Signature data." } |
+ ] |
+ }, |
{ |
"id": "SecurityDetails", |
"type": "object", |
@@ -1009,7 +1024,8 @@ |
{ "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": "Security.CertificateId", "description": "Certificate ID value." }, |
- { "name": "certificateValidationDetails", "$ref": "CertificateValidationDetails", "optional": true, "description": "Validation details for the request's certficate." } |
+ { "name": "certificateValidationDetails", "$ref": "CertificateValidationDetails", "optional": true, "description": "Validation details for the request's certficate." }, |
+ { "name": "signedCertificateTimestampList", "type": "array", "items": { "$ref": "SignedCertificateTimestamp" }, "description": "List of signed certificate timestamps (SCTs)." } |
] |
}, |
{ |