| Index: content/public/common/signed_certificate_timestamp_id_and_status.cc
|
| diff --git a/content/public/common/signed_certificate_timestamp_id_and_status.cc b/content/public/common/signed_certificate_timestamp_id_and_status.cc
|
| index e61ca58a2384bad30b738ff06fd769d17ff066fe..8067b29d4e7128e5fe0895a022d194b19bd2eedc 100644
|
| --- a/content/public/common/signed_certificate_timestamp_id_and_status.cc
|
| +++ b/content/public/common/signed_certificate_timestamp_id_and_status.cc
|
| @@ -7,12 +7,29 @@
|
| namespace content {
|
|
|
| SignedCertificateTimestampIDAndStatus::SignedCertificateTimestampIDAndStatus(
|
| - int id, net::ct::SCTVerifyStatus status)
|
| - : id(id), status(status) {}
|
| + int id,
|
| + net::ct::SCTVerifyStatus status,
|
| + net::ct::SignedCertificateTimestamp::Version version,
|
| + std::string logId,
|
| + int64_t timestamp,
|
| + net::ct::DigitallySigned signature,
|
| + net::ct::SignedCertificateTimestamp::Origin origin,
|
| + std::string logDescription)
|
| + : id(id)
|
| + , status(status)
|
| + , version(version)
|
| + , logId(logId)
|
| + , timestamp(timestamp)
|
| + , signature(signature)
|
| + , origin(origin)
|
| + , logDescription(logDescription)
|
| + {
|
| + }
|
|
|
| bool SignedCertificateTimestampIDAndStatus::operator==(
|
| const SignedCertificateTimestampIDAndStatus& other) const {
|
| return id == other.id && status == other.status;
|
| + // TODO also compare sct?
|
| }
|
|
|
| } // namespace content
|
|
|