| 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 c7d9e2b7c278986236055871e87573b6d7308f2c..96f9e5f5fb5d3e7c6de832f21d21dd85a1d5f746 100644
|
| --- a/chrome/browser/service/service_process_control.cc
|
| +++ b/chrome/browser/service/service_process_control.cc
|
| @@ -286,8 +286,9 @@ void ServiceProcessControl::Launcher::DoDetectLaunched() {
|
|
|
| // If the service process is not launched yet then check again in 2 seconds.
|
| const base::TimeDelta kDetectLaunchRetry = base::TimeDelta::FromSeconds(2);
|
| - MessageLoop::current()->PostDelayedTask(
|
| - FROM_HERE, base::Bind(&Launcher::DoDetectLaunched, this),
|
| + base::MessageLoop::current()->PostDelayedTask(
|
| + FROM_HERE,
|
| + base::Bind(&Launcher::DoDetectLaunched, this),
|
| kDetectLaunchRetry);
|
| }
|
|
|
|
|