summaryrefslogtreecommitdiffstats
path: root/net/http
diff options
context:
space:
mode:
authorcbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-27 16:35:26 +0000
committercbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-27 16:35:26 +0000
commit0f86277de42193b543d0b33e4c82c750f0642141 (patch)
tree58b2076b92aa4f6ba0f15a7070ab408b8e637f62 /net/http
parent66ca9af0f309c6bf792523bac9434401c4039f14 (diff)
downloadchromium_src-0f86277de42193b543d0b33e4c82c750f0642141.zip
chromium_src-0f86277de42193b543d0b33e4c82c750f0642141.tar.gz
chromium_src-0f86277de42193b543d0b33e4c82c750f0642141.tar.bz2
Remove --testing-fixed-http-port and --testing-fixed-https-port.
--host-rules seems like a reasonable enough substitute for these two command line flags, and removing them will simplifies the fairly complicated URL rewrite logic in HttpNetworkTransaction. BUG=None TEST=built and ran net_unittests Review URL: http://codereview.chromium.org/3041019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53790 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http')
-rw-r--r--net/http/http_network_session.cc23
-rw-r--r--net/http/http_network_session.h6
-rw-r--r--net/http/http_network_transaction.cc8
3 files changed, 0 insertions, 37 deletions
diff --git a/net/http/http_network_session.cc b/net/http/http_network_session.cc
index 971786a..05690af 100644
--- a/net/http/http_network_session.cc
+++ b/net/http/http_network_session.cc
@@ -30,9 +30,6 @@ int g_max_sockets_per_group = 6;
// http://crbug.com/44501 for details about proxy server connection limits.
int g_max_sockets_per_proxy_server = 32;
-uint16 g_fixed_http_port = 0;
-uint16 g_fixed_https_port = 0;
-
} // namespace
HttpNetworkSession::HttpNetworkSession(
@@ -148,24 +145,4 @@ void HttpNetworkSession::set_max_sockets_per_group(int socket_count) {
g_max_sockets_per_group = socket_count;
}
-// static
-uint16 HttpNetworkSession::fixed_http_port() {
- return g_fixed_http_port;
-}
-
-// static
-void HttpNetworkSession::set_fixed_http_port(uint16 port) {
- g_fixed_http_port = port;
-}
-
-// static
-uint16 HttpNetworkSession::fixed_https_port() {
- return g_fixed_https_port;
-}
-
-// static
-void HttpNetworkSession::set_fixed_https_port(uint16 port) {
- g_fixed_https_port = port;
-}
-
} // namespace net
diff --git a/net/http/http_network_session.h b/net/http/http_network_session.h
index 98baae1..b1c269d 100644
--- a/net/http/http_network_session.h
+++ b/net/http/http_network_session.h
@@ -103,12 +103,6 @@ class HttpNetworkSession : public base::RefCounted<HttpNetworkSession>,
static void set_max_sockets_per_group(int socket_count);
- static uint16 fixed_http_port();
- static void set_fixed_http_port(uint16 port);
-
- static uint16 fixed_https_port();
- static void set_fixed_https_port(uint16 port);
-
#ifdef UNIT_TEST
void FlushSocketPools() {
if (ssl_socket_pool_.get())
diff --git a/net/http/http_network_transaction.cc b/net/http/http_network_transaction.cc
index ae1e86f..749ab33 100644
--- a/net/http/http_network_transaction.cc
+++ b/net/http/http_network_transaction.cc
@@ -733,14 +733,6 @@ int HttpNetworkTransaction::DoInitConnection() {
using_spdy_ = false;
response_.was_fetched_via_proxy = !proxy_info_.is_direct();
- // Use the fixed testing ports if they've been provided.
- if (using_ssl_) {
- if (session_->fixed_https_port() != 0)
- endpoint_.set_port(session_->fixed_https_port());
- } else if (session_->fixed_http_port() != 0) {
- endpoint_.set_port(session_->fixed_http_port());
- }
-
// Check first if we have a spdy session for this group. If so, then go
// straight to using that.
if (session_->spdy_session_pool()->HasSession(endpoint_)) {