| Index: content/browser/ssl/ssl_policy_backend.cc
|
| diff --git a/content/browser/ssl/ssl_policy_backend.cc b/content/browser/ssl/ssl_policy_backend.cc
|
| index 3d0ea0129fac36d3cc283d3fa2b6e5ba53e036ef..e81c35d1628108c46477c5242d8cb61da1ff5efd 100644
|
| --- a/content/browser/ssl/ssl_policy_backend.cc
|
| +++ b/content/browser/ssl/ssl_policy_backend.cc
|
| @@ -48,11 +48,13 @@ void SSLPolicyBackend::AllowCertForHost(net::X509Certificate* cert,
|
| net::CertPolicy::Judgment SSLPolicyBackend::QueryPolicy(
|
| net::X509Certificate* cert,
|
| const std::string& host,
|
| - net::CertStatus error) {
|
| + net::CertStatus error,
|
| + bool* expired_previous_decision) {
|
| if (!ssl_host_state_delegate_)
|
| return net::CertPolicy::UNKNOWN;
|
|
|
| - return ssl_host_state_delegate_->QueryPolicy(host, cert, error);
|
| + return ssl_host_state_delegate_->QueryPolicy(
|
| + host, cert, error, expired_previous_decision);
|
| }
|
|
|
| } // namespace content
|
|
|