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

Unified Diff: net/url_request/url_fetcher_core.cc

Issue 11786006: Added flags to override hosts for LSO URLs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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
« no previous file with comments | « net/url_request/url_fetcher_core.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_fetcher_core.cc
diff --git a/net/url_request/url_fetcher_core.cc b/net/url_request/url_fetcher_core.cc
index 8673de795c3245b2e751af41de65766d870b0a06..fc218835646f018556ec3916ecb20f937126e4de 100644
--- a/net/url_request/url_fetcher_core.cc
+++ b/net/url_request/url_fetcher_core.cc
@@ -622,6 +622,12 @@ void URLFetcherCore::OnReadCompleted(URLRequest* request,
}
}
+void URLFetcherCore::OnCertificateRequested(
+ URLRequest* request,
+ SSLCertRequestInfo* cert_request_info) {
+ request->ContinueWithCertificate(NULL);
+}
+
void URLFetcherCore::OnConnectionTypeChanged(
NetworkChangeNotifier::ConnectionType type) {
DCHECK_GT(num_retries_on_network_changes_, 0);
« no previous file with comments | « net/url_request/url_fetcher_core.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698