summaryrefslogtreecommitdiffstats
path: root/net/http/http_network_session.cc
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/http_network_session.cc
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/http_network_session.cc')
-rw-r--r--net/http/http_network_session.cc23
1 files changed, 0 insertions, 23 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