| Index: webrtc/call/call.cc
 | 
| diff --git a/webrtc/call/call.cc b/webrtc/call/call.cc
 | 
| index 61eb80a8b3c316a3ea49fc44e7b674536725c5bf..67abc5669d478773f74cbd7e630ec6ca96976ca4 100644
 | 
| --- a/webrtc/call/call.cc
 | 
| +++ b/webrtc/call/call.cc
 | 
| @@ -191,9 +191,8 @@ namespace internal {
 | 
|  Call::Call(const Call::Config& config)
 | 
|      : clock_(Clock::GetRealTimeClock()),
 | 
|        num_cpu_cores_(CpuInfo::DetectNumberOfCores()),
 | 
| -      module_process_thread_(
 | 
| -          rtc::ScopedToUnique(ProcessThread::Create("ModuleProcessThread"))),
 | 
| -      pacer_thread_(rtc::ScopedToUnique(ProcessThread::Create("PacerThread"))),
 | 
| +      module_process_thread_(ProcessThread::Create("ModuleProcessThread")),
 | 
| +      pacer_thread_(ProcessThread::Create("PacerThread")),
 | 
|        call_stats_(new CallStats(clock_)),
 | 
|        bitrate_allocator_(new BitrateAllocator()),
 | 
|        config_(config),
 | 
| 
 |