| Index: base/threading/platform_thread_win.cc
|
| diff --git a/base/threading/platform_thread_win.cc b/base/threading/platform_thread_win.cc
|
| index eae236634d1d9f98618d53508af11208ad0b6781..3571c522f7907d9cf1740564f4b6d6587064a5db 100644
|
| --- a/base/threading/platform_thread_win.cc
|
| +++ b/base/threading/platform_thread_win.cc
|
| @@ -230,6 +230,11 @@ void PlatformThread::Join(PlatformThreadHandle thread_handle) {
|
| }
|
|
|
| // static
|
| +void PlatformThread::Detach(PlatformThreadHandle thread_handle) {
|
| + CloseHandle(thread_handle.platform_handle());
|
| +}
|
| +
|
| +// static
|
| void PlatformThread::SetCurrentThreadPriority(ThreadPriority priority) {
|
| int desired_priority = THREAD_PRIORITY_ERROR_RETURN;
|
| switch (priority) {
|
|
|