summaryrefslogtreecommitdiffstats
path: root/net/http/http_cache.cc
diff options
context:
space:
mode:
authorerikchen@google.com <erikchen@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-19 16:50:53 +0000
committererikchen@google.com <erikchen@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-19 16:50:53 +0000
commita01ea2207ead85fe7f2a3da9aea662050add3bfb (patch)
tree62ca3eaa0f61291c93c0fb89fec26f8610da2a97 /net/http/http_cache.cc
parent05f5654439aa4e5a24e9c4b82225e4f16c352807 (diff)
downloadchromium_src-a01ea2207ead85fe7f2a3da9aea662050add3bfb.zip
chromium_src-a01ea2207ead85fe7f2a3da9aea662050add3bfb.tar.gz
chromium_src-a01ea2207ead85fe7f2a3da9aea662050add3bfb.tar.bz2
SpdySessionPool closes down sessions accurately now.
This may or may not fix 50265. Regardless, the previous behavior was incorrect. TEST=none BUG=none Review URL: http://codereview.chromium.org/3150023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56696 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_cache.cc')
-rw-r--r--net/http/http_cache.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http/http_cache.cc b/net/http/http_cache.cc
index ad72bea..a27a8bd 100644
--- a/net/http/http_cache.cc
+++ b/net/http/http_cache.cc
@@ -380,7 +380,7 @@ void HttpCache::CloseCurrentConnections() {
if (session) {
session->tcp_socket_pool()->Flush();
if (session->spdy_session_pool())
- session->spdy_session_pool()->CloseAllSessions();
+ session->spdy_session_pool()->CloseCurrentSessions();
}
}