summaryrefslogtreecommitdiffstats
path: root/chrome/browser/component_updater/component_updater_service.cc
diff options
context:
space:
mode:
authorcpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-06 02:51:32 +0000
committercpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-06 02:51:32 +0000
commitafa9e34273ccc90081cef4d269348174c148367f (patch)
treed510666ac0a9c0667d950be2f7c6f49ea4eabc52 /chrome/browser/component_updater/component_updater_service.cc
parent1869a3a242a0f0645764d84ea3ab4750556810a1 (diff)
downloadchromium_src-afa9e34273ccc90081cef4d269348174c148367f.zip
chromium_src-afa9e34273ccc90081cef4d269348174c148367f.tar.gz
chromium_src-afa9e34273ccc90081cef4d269348174c148367f.tar.bz2
Adding a const to a time var in component updater.
TBR=asargent BUG=none TEST=none Review URL: http://codereview.chromium.org/9968103 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131081 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/component_updater/component_updater_service.cc')
-rw-r--r--chrome/browser/component_updater/component_updater_service.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/component_updater/component_updater_service.cc b/chrome/browser/component_updater/component_updater_service.cc
index 9b112bc..aa36a8d 100644
--- a/chrome/browser/component_updater/component_updater_service.cc
+++ b/chrome/browser/component_updater/component_updater_service.cc
@@ -526,7 +526,7 @@ void CrxUpdateService::ProcessPendingItems() {
// Next we can go back to components we already checked, here
// we can also batch them in a single url request, as long as
// we have not checked them recently.
- base::TimeDelta min_delta_time =
+ const base::TimeDelta min_delta_time =
base::TimeDelta::FromSeconds(config_->MinimumReCheckWait());
for (UpdateItems::const_iterator it = work_items_.begin();