OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "components/sync/api_impl/attachments/task_queue.h" | 5 #include "components/sync/model_impl/attachments/task_queue.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
10 #include "base/run_loop.h" | 10 #include "base/run_loop.h" |
11 #include "base/timer/mock_timer.h" | 11 #include "base/timer/mock_timer.h" |
12 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
13 | 13 |
14 using base::TimeDelta; | 14 using base::TimeDelta; |
15 | 15 |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 mock_timer->Fire(); | 223 mock_timer->Fire(); |
224 RunLoop(); | 224 RunLoop(); |
225 ASSERT_FALSE(mock_timer->IsRunning()); | 225 ASSERT_FALSE(mock_timer->IsRunning()); |
226 ASSERT_EQ(1U, dispatched_.size()); | 226 ASSERT_EQ(1U, dispatched_.size()); |
227 EXPECT_EQ(1, dispatched_.front()); | 227 EXPECT_EQ(1, dispatched_.front()); |
228 dispatched_.clear(); | 228 dispatched_.clear(); |
229 queue_->MarkAsSucceeded(1); | 229 queue_->MarkAsSucceeded(1); |
230 } | 230 } |
231 | 231 |
232 } // namespace syncer | 232 } // namespace syncer |
OLD | NEW |