| Index: components/sync/core_impl/attachments/task_queue_unittest.cc
|
| diff --git a/sync/internal_api/attachments/task_queue_unittest.cc b/components/sync/core_impl/attachments/task_queue_unittest.cc
|
| similarity index 97%
|
| copy from sync/internal_api/attachments/task_queue_unittest.cc
|
| copy to components/sync/core_impl/attachments/task_queue_unittest.cc
|
| index 0cac978f678f27706e2c47c9e5a26a175479666c..bc58880dfad419661358d1b5437556f07b7d580b 100644
|
| --- a/sync/internal_api/attachments/task_queue_unittest.cc
|
| +++ b/components/sync/core_impl/attachments/task_queue_unittest.cc
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "sync/internal_api/public/attachments/task_queue.h"
|
| +#include "components/sync/core/attachments/task_queue.h"
|
|
|
| #include <utility>
|
| #include <vector>
|
| @@ -29,8 +29,7 @@ class TaskQueueTest : public testing::Test {
|
| TaskQueueTest() : weak_ptr_factory_(this) {
|
| queue_.reset(new TaskQueue<int>(
|
| base::Bind(&TaskQueueTest::Process, weak_ptr_factory_.GetWeakPtr()),
|
| - TimeDelta::FromMinutes(1),
|
| - TimeDelta::FromMinutes(8)));
|
| + TimeDelta::FromMinutes(1), TimeDelta::FromMinutes(8)));
|
| }
|
|
|
| void RunLoop() {
|
|
|