diff options
author | cbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-27 16:35:26 +0000 |
---|---|---|
committer | cbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-27 16:35:26 +0000 |
commit | 0f86277de42193b543d0b33e4c82c750f0642141 (patch) | |
tree | 58b2076b92aa4f6ba0f15a7070ab408b8e637f62 /net/spdy | |
parent | 66ca9af0f309c6bf792523bac9434401c4039f14 (diff) | |
download | chromium_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/spdy')
-rw-r--r-- | net/spdy/spdy_network_transaction.cc | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/net/spdy/spdy_network_transaction.cc b/net/spdy/spdy_network_transaction.cc index fa8ba58..6e0c930 100644 --- a/net/spdy/spdy_network_transaction.cc +++ b/net/spdy/spdy_network_transaction.cc @@ -221,15 +221,6 @@ int SpdyNetworkTransaction::DoInitConnection() { std::string host = request_->url.HostNoBrackets(); int port = request_->url.EffectiveIntPort(); - // Use the fixed testing ports if they've been provided. This is useful for - // debugging. - if (SpdySession::SSLMode()) { - if (session_->fixed_https_port() != 0) - port = session_->fixed_https_port(); - } else if (session_->fixed_http_port() != 0) { - port = session_->fixed_http_port(); - } - std::string connection_group = "spdy."; HostPortPair host_port_pair(host, port); connection_group.append(host_port_pair.ToString()); |