Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Unified Diff: net/proxy/proxy_script_fetcher_impl.cc

Issue 7976036: net: make HSTS hosts use the normal SSL interstitials (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/proxy/proxy_script_fetcher_impl.cc
diff --git a/net/proxy/proxy_script_fetcher_impl.cc b/net/proxy/proxy_script_fetcher_impl.cc
index 7025e72696eabac7052e0a45a9f5c39f57e9110c..7c46ec1d95fdbbd1db3cf546c69e83316be3b834 100644
--- a/net/proxy/proxy_script_fetcher_impl.cc
+++ b/net/proxy/proxy_script_fetcher_impl.cc
@@ -191,7 +191,8 @@ void ProxyScriptFetcherImpl::OnAuthRequired(URLRequest* request,
void ProxyScriptFetcherImpl::OnSSLCertificateError(URLRequest* request,
int cert_error,
- X509Certificate* cert) {
+ const SSLInfo& ssl_info,
+ bool must_be_fatal) {
DCHECK_EQ(request, cur_request_.get());
LOG(WARNING) << "SSL certificate error when fetching PAC script, aborting.";
// Certificate errors are in same space as net errors.

Powered by Google App Engine
This is Rietveld 408576698