| Index: base/threading/simple_thread.h
|
| diff --git a/base/threading/simple_thread.h b/base/threading/simple_thread.h
|
| index df03ce1c8131e32144003989acb0eb4e5732381e..a7ac29194aa2413455567aea4fdf5cb51364016a 100644
|
| --- a/base/threading/simple_thread.h
|
| +++ b/base/threading/simple_thread.h
|
| @@ -107,7 +107,7 @@ class BASE_EXPORT SimpleThread : public PlatformThread::Delegate {
|
| // Only set priorities with a careful understanding of the consequences.
|
| // This is meant for very limited use cases.
|
| void SetThreadPriority(ThreadPriority priority) {
|
| - PlatformThread::SetThreadPriority(thread_, priority);
|
| + PlatformThread::SetThreadPriority(thread_, tid(), priority);
|
| }
|
|
|
| private:
|
|
|