summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
authorwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-22 23:57:45 +0000
committerwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-22 23:57:45 +0000
commit95fb385e5e68a69a39c77d66d801bebdaf39c311 (patch)
tree2090dc35a76c8cb85b1ef20c200254884f6d6d3a /content
parent711726473047dc051e3bddc04657f3f6ce42569f (diff)
downloadchromium_src-95fb385e5e68a69a39c77d66d801bebdaf39c311.zip
chromium_src-95fb385e5e68a69a39c77d66d801bebdaf39c311.tar.gz
chromium_src-95fb385e5e68a69a39c77d66d801bebdaf39c311.tar.bz2
Refactor HttpStreamFactory.
Rename StreamFactory and StreamRequest to HttpStreamFactory and HttpStreamRequest. Rename HttpStreamFactory to HttpStreamFactoryImpl. Create HttpStreamFactoryImpl::Request (inherits from HttpStreamRequest) and HttpStreamFactoryImpl::Job (most of the old HttpStreamRequest code, other than the interface, moved here). Currently there is still a strong binding within HttpStreamFactoryImpl between requests and jobs. This will be removed in a future changelist. Note that due to the preparation for late binding, information like HttpRequestInfo and SSLConfig and ProxyInfo are just copied. It's possible we can consider refcounting them to reduce copies, but I think it's not worth the effort / ugliness. I also did some minor cleanups like moving SpdySettingsStorage into SpdySessionPool and some CloseIdleConnections() cleanup. BUG=54371,42669 TEST=unit tests Review URL: http://codereview.chromium.org/6543004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75668 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r--content/browser/renderer_host/render_message_filter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/renderer_host/render_message_filter.cc b/content/browser/renderer_host/render_message_filter.cc
index 388bddb..4308e7a 100644
--- a/content/browser/renderer_host/render_message_filter.cc
+++ b/content/browser/renderer_host/render_message_filter.cc
@@ -1357,7 +1357,7 @@ void RenderMessageFilter::OnCloseCurrentConnections() {
if (!CheckBenchmarkingEnabled())
return;
request_context_->GetURLRequestContext()->
- http_transaction_factory()->GetCache()->CloseCurrentConnections();
+ http_transaction_factory()->GetCache()->CloseAllConnections();
}
void RenderMessageFilter::OnSetCacheMode(bool enabled) {