| Index: chrome/common/service_process_util_posix.cc
|
| diff --git a/chrome/common/service_process_util_posix.cc b/chrome/common/service_process_util_posix.cc
|
| index eb753cf1d394ce566afddbffb05368c4905844b7..fa793a69d21affa154717c806228687082b1dbc6 100644
|
| --- a/chrome/common/service_process_util_posix.cc
|
| +++ b/chrome/common/service_process_util_posix.cc
|
| @@ -28,7 +28,7 @@ MultiProcessLock* TakeNamedLock(const std::string& name, bool waiting) {
|
| break;
|
| }
|
| if (!waiting) break;
|
| - base::PlatformThread::Sleep(100 * i);
|
| + base::PlatformThread::Sleep(base::TimeDelta::FromMilliseconds(100 * i));
|
| }
|
| if (!got_lock) {
|
| lock.reset();
|
|
|