summaryrefslogtreecommitdiffstats
path: root/chrome/common/service_process_util_linux.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/service_process_util_linux.cc')
-rw-r--r--chrome/common/service_process_util_linux.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/service_process_util_linux.cc b/chrome/common/service_process_util_linux.cc
index 5fb5a81..457a50c 100644
--- a/chrome/common/service_process_util_linux.cc
+++ b/chrome/common/service_process_util_linux.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -31,7 +31,7 @@ MultiProcessLock* TakeNamedLock(const std::string& name, bool waiting) {
break;
}
if (!waiting) break;
- base::PlatformThread::Sleep(base::TimeDelta::FromMilliseconds(100 * i));
+ base::PlatformThread::Sleep(100 * i);
}
if (!got_lock) {
lock.reset();