summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/render_thread.h
diff options
context:
space:
mode:
authormbelshe@chromium.org <mbelshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-14 01:02:53 +0000
committermbelshe@chromium.org <mbelshe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-14 01:02:53 +0000
commitc40acc381fce1ac7f58975d45bd88e26a5e4a973 (patch)
treec7ad6b6abbf1ce022f2f74e6ae70d941072cacde /chrome/renderer/render_thread.h
parent9263a4957be27c1c3e0aec8170b6f161619300ca (diff)
downloadchromium_src-c40acc381fce1ac7f58975d45bd88e26a5e4a973.zip
chromium_src-c40acc381fce1ac7f58975d45bd88e26a5e4a973.tar.gz
chromium_src-c40acc381fce1ac7f58975d45bd88e26a5e4a973.tar.bz2
Rename CloseIdleConnections -> CloseCurrentConnections.
This method is (and was) just for debugging; while it was closing idle connections, that was not aggressive enough; the benchmark needs to close all connections, not just the idle ones. To ensure connections are abandoned, create a new pool; leaving the old pool to languish as any pending sockets die. BUG=none TEST=none Review URL: http://codereview.chromium.org/549031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36208 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/render_thread.h')
-rw-r--r--chrome/renderer/render_thread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/renderer/render_thread.h b/chrome/renderer/render_thread.h
index 6769b06..bde662a 100644
--- a/chrome/renderer/render_thread.h
+++ b/chrome/renderer/render_thread.h
@@ -140,8 +140,8 @@ class RenderThread : public RenderThreadBase,
// bookkeeping operation off the critical latency path.
void InformHostOfCacheStatsLater();
- // Sends a message to the browser to close all idle connections.
- void CloseIdleConnections();
+ // Sends a message to the browser to close all connections.
+ void CloseCurrentConnections();
// Sends a message to the browser to enable or disable the disk cache.
void SetCacheMode(bool enabled);