| Index: base/threading/platform_thread_win.cc
|
| diff --git a/base/threading/platform_thread_win.cc b/base/threading/platform_thread_win.cc
|
| index 4dc839bbc7e224a907c9b3209b9b80cdaa7243ba..82981adaf834b7a813cabf40756f4c2d59222ac5 100644
|
| --- a/base/threading/platform_thread_win.cc
|
| +++ b/base/threading/platform_thread_win.cc
|
| @@ -110,11 +110,6 @@ void PlatformThread::YieldCurrentThread() {
|
| }
|
|
|
| // static
|
| -void PlatformThread::Sleep(int duration_ms) {
|
| - ::Sleep(duration_ms);
|
| -}
|
| -
|
| -// static
|
| void PlatformThread::Sleep(TimeDelta duration) {
|
| ::Sleep(duration.InMillisecondsRoundedUp());
|
| }
|
|
|