Commit 43a5c36b authored by rvargas@google.com's avatar rvargas@google.com

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
parent ba4b08a8
...@@ -1141,7 +1141,7 @@ void BackendImpl::OnOperationCompleted(base::TimeDelta elapsed_time) { ...@@ -1141,7 +1141,7 @@ void BackendImpl::OnOperationCompleted(base::TimeDelta elapsed_time) {
if (!throttle_requests_) if (!throttle_requests_)
return; return;
const int kMaxNormalDelayMS = 100; const int kMaxNormalDelayMS = 460;
bool throttling = io_delay_ > kMaxNormalDelayMS; bool throttling = io_delay_ > kMaxNormalDelayMS;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment