| Index: webrtc/base/task_queue_win.cc
 | 
| diff --git a/webrtc/base/task_queue_win.cc b/webrtc/base/task_queue_win.cc
 | 
| index 11aa81de039258d07d0027137a1fe620ae8df641..c8ef7211e895f8cffc47db8619ee1f35114349c2 100644
 | 
| --- a/webrtc/base/task_queue_win.cc
 | 
| +++ b/webrtc/base/task_queue_win.cc
 | 
| @@ -228,7 +228,7 @@ void TaskQueue::PostTaskAndReply(std::unique_ptr<QueuedTask> task,
 | 
|  }
 | 
|  
 | 
|  // static
 | 
| -bool TaskQueue::ThreadMain(void* context) {
 | 
| +void TaskQueue::ThreadMain(void* context) {
 | 
|    HANDLE timer_handles[MultimediaTimer::kMaxTimers];
 | 
|    // Active multimedia timers.
 | 
|    std::vector<MultimediaTimer> mm_timers;
 | 
| @@ -283,8 +283,6 @@ bool TaskQueue::ThreadMain(void* context) {
 | 
|        RTC_DCHECK_EQ(WAIT_IO_COMPLETION, result);
 | 
|      }
 | 
|    }
 | 
| -
 | 
| -  return false;
 | 
|  }
 | 
|  
 | 
|  // static
 | 
| 
 |