| Index: base/threading/platform_thread_posix.cc
|
| diff --git a/base/threading/platform_thread_posix.cc b/base/threading/platform_thread_posix.cc
|
| index 77039a0add82c50f56fa3a3a0e385745d5138f39..59162b92afeac0594945f96cfa57d94770a248b8 100644
|
| --- a/base/threading/platform_thread_posix.cc
|
| +++ b/base/threading/platform_thread_posix.cc
|
| @@ -176,13 +176,6 @@ void PlatformThread::YieldCurrentThread() {
|
| }
|
|
|
| // static
|
| -void PlatformThread::Sleep(int duration_ms) {
|
| - // NOTE: This function will be supplanted by the other version of Sleep
|
| - // in the future. See issue 108171 for more information.
|
| - Sleep(TimeDelta::FromMilliseconds(duration_ms));
|
| -}
|
| -
|
| -// static
|
| void PlatformThread::Sleep(TimeDelta duration) {
|
| struct timespec sleep_time, remaining;
|
|
|
|
|