| Index: webrtc/base/thread.h
|
| diff --git a/webrtc/base/thread.h b/webrtc/base/thread.h
|
| index 97e69415cd3dba6098c022edfd7968a705c7c357..29b78e18452a28b59f844bcc81432949ee358e4e 100644
|
| --- a/webrtc/base/thread.h
|
| +++ b/webrtc/base/thread.h
|
| @@ -238,7 +238,11 @@ class LOCKABLE Thread : public MessageQueue {
|
| friend class ScopedDisallowBlockingCalls;
|
|
|
| private:
|
| +#if defined(WEBRTC_WIN)
|
| + static DWORD WINAPI PreRun(LPVOID context);
|
| +#else
|
| static void *PreRun(void *pv);
|
| +#endif
|
|
|
| // ThreadManager calls this instead WrapCurrent() because
|
| // ThreadManager::Instance() cannot be used while ThreadManager is
|
|
|