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

Side by Side Diff: components/drive/sync_client_unittest.cc

Issue 1662843002: Revert of Delete base/prefs and update callers to use components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « components/drive/job_scheduler_unittest.cc ('k') | components/feedback/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/drive/sync_client.h" 5 #include "components/drive/sync_client.h"
6 6
7 #include "base/files/file_path.h" 7 #include "base/files/file_path.h"
8 #include "base/files/file_util.h" 8 #include "base/files/file_util.h"
9 #include "base/files/scoped_temp_dir.h" 9 #include "base/files/scoped_temp_dir.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "base/prefs/testing_pref_service.h"
11 #include "base/run_loop.h" 12 #include "base/run_loop.h"
12 #include "base/single_thread_task_runner.h" 13 #include "base/single_thread_task_runner.h"
13 #include "base/test/test_timeouts.h" 14 #include "base/test/test_timeouts.h"
14 #include "base/thread_task_runner_handle.h" 15 #include "base/thread_task_runner_handle.h"
15 #include "components/drive/change_list_loader.h" 16 #include "components/drive/change_list_loader.h"
16 #include "components/drive/drive.pb.h" 17 #include "components/drive/drive.pb.h"
17 #include "components/drive/drive_test_util.h" 18 #include "components/drive/drive_test_util.h"
18 #include "components/drive/event_logger.h" 19 #include "components/drive/event_logger.h"
19 #include "components/drive/fake_free_disk_space_getter.h" 20 #include "components/drive/fake_free_disk_space_getter.h"
20 #include "components/drive/file_cache.h" 21 #include "components/drive/file_cache.h"
21 #include "components/drive/file_change.h" 22 #include "components/drive/file_change.h"
22 #include "components/drive/file_system/move_operation.h" 23 #include "components/drive/file_system/move_operation.h"
23 #include "components/drive/file_system/operation_delegate.h" 24 #include "components/drive/file_system/operation_delegate.h"
24 #include "components/drive/file_system/remove_operation.h" 25 #include "components/drive/file_system/remove_operation.h"
25 #include "components/drive/file_system_core_util.h" 26 #include "components/drive/file_system_core_util.h"
26 #include "components/drive/job_scheduler.h" 27 #include "components/drive/job_scheduler.h"
27 #include "components/drive/resource_entry_conversion.h" 28 #include "components/drive/resource_entry_conversion.h"
28 #include "components/drive/resource_metadata.h" 29 #include "components/drive/resource_metadata.h"
29 #include "components/drive/service/fake_drive_service.h" 30 #include "components/drive/service/fake_drive_service.h"
30 #include "components/prefs/testing_pref_service.h"
31 #include "content/public/test/test_browser_thread_bundle.h" 31 #include "content/public/test/test_browser_thread_bundle.h"
32 #include "google_apis/drive/drive_api_parser.h" 32 #include "google_apis/drive/drive_api_parser.h"
33 #include "google_apis/drive/test_util.h" 33 #include "google_apis/drive/test_util.h"
34 #include "testing/gtest/include/gtest/gtest.h" 34 #include "testing/gtest/include/gtest/gtest.h"
35 35
36 namespace drive { 36 namespace drive {
37 namespace internal { 37 namespace internal {
38 38
39 namespace { 39 namespace {
40 40
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 local_id, google_apis::test_util::CreateCopyResultCallback(&error))); 514 local_id, google_apis::test_util::CreateCopyResultCallback(&error)));
515 515
516 base::RunLoop().RunUntilIdle(); 516 base::RunLoop().RunUntilIdle();
517 517
518 // The callback is called. 518 // The callback is called.
519 EXPECT_EQ(FILE_ERROR_OK, error); 519 EXPECT_EQ(FILE_ERROR_OK, error);
520 } 520 }
521 521
522 } // namespace internal 522 } // namespace internal
523 } // namespace drive 523 } // namespace drive
OLDNEW
« no previous file with comments | « components/drive/job_scheduler_unittest.cc ('k') | components/feedback/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698