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

Unified Diff: net/http/http_stream_factory_impl_job.cc

Issue 6792032: net: remove forced renegotiation checks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 9 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/http/http_stream_factory_impl_job.cc
diff --git a/net/http/http_stream_factory_impl_job.cc b/net/http/http_stream_factory_impl_job.cc
index d0f1d6fe2c727d5ea1ba2038268eeb9ca3d2965f..09c17ea487c4f3ae3c40a8f82fb5c642139ce091 100644
--- a/net/http/http_stream_factory_impl_job.cc
+++ b/net/http/http_stream_factory_impl_job.cc
@@ -886,11 +886,6 @@ void HttpStreamFactoryImpl::Job::InitSSLConfig(
if (request_info_.load_flags & LOAD_VERIFY_EV_CERT)
ssl_config->verify_ev_cert = true;
-
- if (proxy_info_.proxy_server().scheme() == ProxyServer::SCHEME_HTTP ||
- proxy_info_.proxy_server().scheme() == ProxyServer::SCHEME_HTTPS) {
- ssl_config->mitm_proxies_allowed = true;
- }
wtc 2011/04/05 17:20:03 Given this code to allow MITM proxies whenever a p
agl 2011/04/05 19:55:41 Indeed.
}

Powered by Google App Engine
This is Rietveld 408576698