summaryrefslogtreecommitdiffstats
path: root/chrome/browser/service/service_process_control.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/service/service_process_control.cc')
-rw-r--r--chrome/browser/service/service_process_control.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/service/service_process_control.cc b/chrome/browser/service/service_process_control.cc
index 2d974f6..94a3a89 100644
--- a/chrome/browser/service/service_process_control.cc
+++ b/chrome/browser/service/service_process_control.cc
@@ -300,7 +300,7 @@ void ServiceProcessControl::Launcher::DoDetectLaunched() {
retry_count_++;
// If the service process is not launched yet then check again in 2 seconds.
- const int kDetectLaunchRetry = 2000;
+ const base::TimeDelta kDetectLaunchRetry = base::TimeDelta::FromSeconds(2);
MessageLoop::current()->PostDelayedTask(
FROM_HERE, base::Bind(&Launcher::DoDetectLaunched, this),
kDetectLaunchRetry);