Index: content/public/common/ssl_status.cc |
diff --git a/content/public/common/ssl_status.cc b/content/public/common/ssl_status.cc |
index 7f6aeeca68566d359cb3637244af567841aa84a5..00ea4f476086e08d0f23c21cd34afba5765b1e73 100644 |
--- a/content/public/common/ssl_status.cc |
+++ b/content/public/common/ssl_status.cc |
@@ -6,13 +6,25 @@ |
namespace content { |
+SignedCertificateTimestampIDAndStatus::SignedCertificateTimestampIDAndStatus( |
+ int id, net::SignedCertificateTimestampVerificationStatus status) |
+ : id_(id), status_(status) {} |
+ |
+bool SignedCertificateTimestampIDAndStatus::operator==( |
+ const SignedCertificateTimestampIDAndStatus& other) const { |
+ return id_ == other.id_ && status_ == other.status_; |
+} |
+ |
SSLStatus::SSLStatus() |
: security_style(SECURITY_STYLE_UNKNOWN), |
cert_id(0), |
cert_status(0), |
security_bits(-1), |
connection_status(0), |
- content_status(NORMAL_CONTENT) { |
+ content_status(NORMAL_CONTENT), |
+ signed_certificate_timestamp_ids() { |
} |
+SSLStatus::~SSLStatus() {} |
+ |
} // namespace content |