Chromium Code Reviews| Index: base/task_scheduler/scheduler_lock.cc |
| diff --git a/base/task_scheduler/scheduler_lock.cc b/base/task_scheduler/scheduler_lock.cc |
| index 78e61da97f5b3583a2b3e971c4b11ef62b377b3f..34b1c23a7bbecb4a3afa3f8bda1c0ef8284a9053 100644 |
| --- a/base/task_scheduler/scheduler_lock.cc |
| +++ b/base/task_scheduler/scheduler_lock.cc |
| @@ -132,7 +132,7 @@ void SchedulerLock::Release() { |
| scoped_ptr<ConditionVariable> SchedulerLock::CreateConditionVariable() { |
| scoped_ptr<ConditionVariable> cond_var(new ConditionVariable(&lock_)); |
| - return std::move(cond_var); |
|
fdoray
2016/02/19 14:18:46
oups... this shouldn't have been in this CL. Will
|
| + return cond_var; |
| } |
| } // namespace internal |