diff options
author | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-25 06:36:58 +0000 |
---|---|---|
committer | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-25 06:36:58 +0000 |
commit | 31e68d79c7a0ee90d6de5f8fd26b72a7b35bdd2e (patch) | |
tree | 884da7cd68797bda1109b596355a2ec2c1647561 /net/spdy/spdy_stream_unittest.cc | |
parent | 7a6a4b3a5b233bb2eae6cec674d90ac858d1a9e7 (diff) | |
download | chromium_src-31e68d79c7a0ee90d6de5f8fd26b72a7b35bdd2e.zip chromium_src-31e68d79c7a0ee90d6de5f8fd26b72a7b35bdd2e.tar.gz chromium_src-31e68d79c7a0ee90d6de5f8fd26b72a7b35bdd2e.tar.bz2 |
Refactor: change the spdy session pool key to take a ProxyServer instead of a string representation of the proxy server.
BUG=52668
Review URL: http://codereview.chromium.org/3197018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57297 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/spdy/spdy_stream_unittest.cc')
-rw-r--r-- | net/spdy/spdy_stream_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/spdy/spdy_stream_unittest.cc b/net/spdy/spdy_stream_unittest.cc index 71664ad..57afd53 100644 --- a/net/spdy/spdy_stream_unittest.cc +++ b/net/spdy/spdy_stream_unittest.cc @@ -119,7 +119,7 @@ class SpdyStreamTest : public testing::Test { scoped_refptr<SpdySession> CreateSpdySession() { spdy::SpdyFramer::set_enable_compression_default(false); HostPortPair host_port_pair("www.google.com", 80); - HostPortProxyPair pair(host_port_pair, ""); + HostPortProxyPair pair(host_port_pair, ProxyServer::Direct()); scoped_refptr<SpdySession> session( session_->spdy_session_pool()->Get(pair, session_, BoundNetLog())); return session; |