| Index: net/ssl/ssl_config.cc
|
| diff --git a/net/ssl/ssl_config.cc b/net/ssl/ssl_config.cc
|
| index 02829918ed47248e8f8bebe9febb718319b0f374..c9b68d058c6b9fbfbfbc09c5cf522b9cb29819a7 100644
|
| --- a/net/ssl/ssl_config.cc
|
| +++ b/net/ssl/ssl_config.cc
|
| @@ -25,9 +25,11 @@ const uint16 kDefaultSSLVersionMax =
|
| SSL_PROTOCOL_VERSION_TLS1_2;
|
| #endif
|
|
|
| -SSLConfig::CertAndStatus::CertAndStatus() : cert_status(0) {}
|
| +SSLConfig::CertAndStatus::CertAndStatus() : cert_status(0) {
|
| +}
|
|
|
| -SSLConfig::CertAndStatus::~CertAndStatus() {}
|
| +SSLConfig::CertAndStatus::~CertAndStatus() {
|
| +}
|
|
|
| SSLConfig::SSLConfig()
|
| : rev_checking_enabled(false),
|
| @@ -44,7 +46,8 @@ SSLConfig::SSLConfig()
|
| cert_io_enabled(true) {
|
| }
|
|
|
| -SSLConfig::~SSLConfig() {}
|
| +SSLConfig::~SSLConfig() {
|
| +}
|
|
|
| bool SSLConfig::IsAllowedBadCert(X509Certificate* cert,
|
| CertStatus* cert_status) const {
|
|
|