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

Side by Side Diff: chrome/browser/extensions/api/sync_file_system/sync_file_system_browsertest.cc

Issue 2884763002: Automated IWYU fix for TaskRunner includes. (Closed)
Patch Set: rebase on r472096 Created 3 years, 7 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 <stdint.h> 5 #include <stdint.h>
6 #include <utility> 6 #include <utility>
7 7
8 #include "base/json/json_reader.h" 8 #include "base/json/json_reader.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/run_loop.h" 10 #include "base/run_loop.h"
11 #include "base/sequenced_task_runner.h"
11 #include "base/task_scheduler/post_task.h" 12 #include "base/task_scheduler/post_task.h"
12 #include "base/threading/sequenced_worker_pool.h" 13 #include "base/threading/sequenced_worker_pool.h"
13 #include "base/threading/thread_task_runner_handle.h" 14 #include "base/threading/thread_task_runner_handle.h"
14 #include "base/values.h" 15 #include "base/values.h"
15 #include "chrome/browser/apps/app_browsertest_util.h" 16 #include "chrome/browser/apps/app_browsertest_util.h"
16 #include "chrome/browser/extensions/extension_service.h" 17 #include "chrome/browser/extensions/extension_service.h"
17 #include "chrome/browser/signin/fake_signin_manager_builder.h" 18 #include "chrome/browser/signin/fake_signin_manager_builder.h"
18 #include "chrome/browser/sync_file_system/drive_backend/sync_engine.h" 19 #include "chrome/browser/sync_file_system/drive_backend/sync_engine.h"
19 #include "chrome/browser/sync_file_system/local/local_file_sync_service.h" 20 #include "chrome/browser/sync_file_system/local/local_file_sync_service.h"
20 #include "chrome/browser/sync_file_system/sync_file_system_service.h" 21 #include "chrome/browser/sync_file_system/sync_file_system_service.h"
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 189
189 sync_engine()->GoogleSigninSucceeded("test_account", "tester", "testing"); 190 sync_engine()->GoogleSigninSucceeded("test_account", "tester", "testing");
190 WaitUntilIdle(); 191 WaitUntilIdle();
191 192
192 bar_created.Reply("resume"); 193 bar_created.Reply("resume");
193 194
194 EXPECT_TRUE(catcher.GetNextResult()); 195 EXPECT_TRUE(catcher.GetNextResult());
195 } 196 }
196 197
197 } // namespace sync_file_system 198 } // namespace sync_file_system
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698