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

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

Issue 2598963005: Include-what-you-use for WrapUnique/MakeUnique. (Closed)
Patch Set: restore order of includes in x11_topmost_window_finder_interactive_uitest.cc Created 3 years, 12 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"
9 #include "base/message_loop/message_loop.h" 10 #include "base/message_loop/message_loop.h"
10 #include "base/run_loop.h" 11 #include "base/run_loop.h"
11 #include "base/timer/mock_timer.h" 12 #include "base/timer/mock_timer.h"
12 #include "testing/gtest/include/gtest/gtest.h" 13 #include "testing/gtest/include/gtest/gtest.h"
13 14
14 using base::TimeDelta; 15 using base::TimeDelta;
15 16
16 namespace syncer { 17 namespace syncer {
17 18
18 namespace { 19 namespace {
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 mock_timer->Fire(); 224 mock_timer->Fire();
224 RunLoop(); 225 RunLoop();
225 ASSERT_FALSE(mock_timer->IsRunning()); 226 ASSERT_FALSE(mock_timer->IsRunning());
226 ASSERT_EQ(1U, dispatched_.size()); 227 ASSERT_EQ(1U, dispatched_.size());
227 EXPECT_EQ(1, dispatched_.front()); 228 EXPECT_EQ(1, dispatched_.front());
228 dispatched_.clear(); 229 dispatched_.clear();
229 queue_->MarkAsSucceeded(1); 230 queue_->MarkAsSucceeded(1);
230 } 231 }
231 232
232 } // namespace syncer 233 } // namespace syncer
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698