| Index: sync/internal_api/public/attachments/task_queue.h
|
| diff --git a/sync/internal_api/public/attachments/task_queue.h b/sync/internal_api/public/attachments/task_queue.h
|
| index c46ce85f09a8152fd7d1c332ebf06b089dd7a3fe..2e2a5b99c1776567457d57b522c1a6c12e3d4baf 100644
|
| --- a/sync/internal_api/public/attachments/task_queue.h
|
| +++ b/sync/internal_api/public/attachments/task_queue.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include <deque>
|
| #include <set>
|
| +#include <utility>
|
|
|
| #include "base/bind.h"
|
| #include "base/callback.h"
|
| @@ -233,7 +234,7 @@ template <typename T>
|
| void TaskQueue<T>::SetTimerForTest(scoped_ptr<base::Timer> timer) {
|
| DCHECK(CalledOnValidThread());
|
| DCHECK(timer.get());
|
| - backoff_timer_ = timer.Pass();
|
| + backoff_timer_ = std::move(timer);
|
| }
|
|
|
| template <typename T>
|
|
|