| Index: webrtc/system_wrappers/source/event_timer_posix.cc
|
| diff --git a/webrtc/system_wrappers/source/event_timer_posix.cc b/webrtc/system_wrappers/source/event_timer_posix.cc
|
| index 99eebcb70a5c87849242aa70649663c1b89bab7b..ff26e76ec0b3e036bb1cf2c7e5954277b79b5c85 100644
|
| --- a/webrtc/system_wrappers/source/event_timer_posix.cc
|
| +++ b/webrtc/system_wrappers/source/event_timer_posix.cc
|
| @@ -154,7 +154,7 @@ bool EventTimerPosix::StartTimer(bool periodic, unsigned long time) {
|
| // Start the timer thread
|
| timer_event_.reset(new EventTimerPosix());
|
| const char* thread_name = "WebRtc_event_timer_thread";
|
| - timer_thread_ = ThreadWrapper::CreateThread(Run, this, thread_name);
|
| + timer_thread_ = PlatformThread::CreateThread(Run, this, thread_name);
|
| periodic_ = periodic;
|
| time_ = time;
|
| bool started = timer_thread_->Start();
|
|
|