Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(291)

Side by Side Diff: components/sync/model_impl/attachments/task_queue_unittest.cc

Issue 2662453008: [Sync] Fix sync lint errors/includes, update presubmit. (Closed)
Patch Set: Rebase Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/model_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/memory/ptr_util.h"
10 #include "base/message_loop/message_loop.h" 9 #include "base/message_loop/message_loop.h"
11 #include "base/run_loop.h" 10 #include "base/run_loop.h"
12 #include "base/timer/mock_timer.h" 11 #include "base/timer/mock_timer.h"
13 #include "testing/gtest/include/gtest/gtest.h" 12 #include "testing/gtest/include/gtest/gtest.h"
14 13
15 using base::TimeDelta; 14 using base::TimeDelta;
16 15
17 namespace syncer { 16 namespace syncer {
18 17
19 namespace { 18 namespace {
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 mock_timer->Fire(); 223 mock_timer->Fire();
225 RunLoop(); 224 RunLoop();
226 ASSERT_FALSE(mock_timer->IsRunning()); 225 ASSERT_FALSE(mock_timer->IsRunning());
227 ASSERT_EQ(1U, dispatched_.size()); 226 ASSERT_EQ(1U, dispatched_.size());
228 EXPECT_EQ(1, dispatched_.front()); 227 EXPECT_EQ(1, dispatched_.front());
229 dispatched_.clear(); 228 dispatched_.clear();
230 queue_->MarkAsSucceeded(1); 229 queue_->MarkAsSucceeded(1);
231 } 230 }
232 231
233 } // namespace syncer 232 } // namespace syncer
OLDNEW
« no previous file with comments | « components/sync/model/recording_model_type_change_processor.cc ('k') | components/sync/model_impl/model_type_store_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698