summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorrvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-18 23:28:52 +0000
committerrvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-18 23:28:52 +0000
commit43a5c36b144a40704177804aba53f0659b620ff3 (patch)
tree65def1748627e5a7cd8d3b4b5fae56272a250fc7 /net
parentba4b08a8da2c2af9bff7bb60c52c8bed33c5dbe2 (diff)
downloadchromium_src-43a5c36b144a40704177804aba53f0659b620ff3.zip
chromium_src-43a5c36b144a40704177804aba53f0659b620ff3.tar.gz
chromium_src-43a5c36b144a40704177804aba53f0659b620ff3.tar.bz2
Disk cache: Increase the throttling threshold (100->460ms) for
the current experiment. BUG=54338 TEST=none TBR=gavinp Review URL: http://codereview.chromium.org/6376002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71717 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r--net/disk_cache/backend_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/disk_cache/backend_impl.cc b/net/disk_cache/backend_impl.cc
index 31320a78..b406601 100644
--- a/net/disk_cache/backend_impl.cc
+++ b/net/disk_cache/backend_impl.cc
@@ -1141,7 +1141,7 @@ void BackendImpl::OnOperationCompleted(base::TimeDelta elapsed_time) {
if (!throttle_requests_)
return;
- const int kMaxNormalDelayMS = 100;
+ const int kMaxNormalDelayMS = 460;
bool throttling = io_delay_ > kMaxNormalDelayMS;