Index: chrome/browser/service/service_process_control.cc |
diff --git a/chrome/browser/service/service_process_control.cc b/chrome/browser/service/service_process_control.cc |
index f7a1eeddf0f5e02c3ef1f8ceaace9ad4bef3b34c..09106c445010d2f443e92aad67ec6c46213a6667 100644 |
--- a/chrome/browser/service/service_process_control.cc |
+++ b/chrome/browser/service/service_process_control.cc |
@@ -296,7 +296,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); |