OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "chrome/browser/chromeos/drive/file_system/operation_test_base.h" | 5 #include "chrome/browser/chromeos/drive/file_system/operation_test_base.h" |
6 | 6 |
7 #include "base/prefs/testing_pref_service.h" | 7 #include "base/prefs/testing_pref_service.h" |
8 #include "base/threading/sequenced_worker_pool.h" | 8 #include "base/threading/sequenced_worker_pool.h" |
9 #include "chrome/browser/chromeos/drive/change_list_loader.h" | 9 #include "chrome/browser/chromeos/drive/change_list_loader.h" |
10 #include "chrome/browser/chromeos/drive/fake_free_disk_space_getter.h" | 10 #include "chrome/browser/chromeos/drive/fake_free_disk_space_getter.h" |
11 #include "chrome/browser/chromeos/drive/file_cache.h" | 11 #include "chrome/browser/chromeos/drive/file_cache.h" |
12 #include "chrome/browser/chromeos/drive/file_change.h" | 12 #include "chrome/browser/chromeos/drive/file_change.h" |
13 #include "chrome/browser/chromeos/drive/file_system/operation_delegate.h" | 13 #include "chrome/browser/chromeos/drive/file_system/operation_delegate.h" |
14 #include "chrome/browser/chromeos/drive/job_scheduler.h" | 14 #include "chrome/browser/chromeos/drive/job_scheduler.h" |
15 #include "chrome/browser/chromeos/drive/resource_metadata.h" | 15 #include "chrome/browser/chromeos/drive/resource_metadata.h" |
16 #include "chrome/browser/drive/event_logger.h" | 16 #include "components/drive/event_logger.h" |
17 #include "chrome/browser/drive/fake_drive_service.h" | 17 #include "components/drive/service/fake_drive_service.h" |
18 #include "chrome/browser/drive/test_util.h" | 18 #include "components/drive/service/test_util.h" |
19 #include "content/public/browser/browser_thread.h" | 19 #include "content/public/browser/browser_thread.h" |
20 #include "content/public/test/test_utils.h" | 20 #include "content/public/test/test_utils.h" |
21 #include "google_apis/drive/test_util.h" | 21 #include "google_apis/drive/test_util.h" |
22 | 22 |
23 namespace drive { | 23 namespace drive { |
24 namespace file_system { | 24 namespace file_system { |
25 | 25 |
26 OperationTestBase::LoggingDelegate::LoggingDelegate() { | 26 OperationTestBase::LoggingDelegate::LoggingDelegate() { |
27 } | 27 } |
28 | 28 |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 FileError OperationTestBase::CheckForUpdates() { | 186 FileError OperationTestBase::CheckForUpdates() { |
187 FileError error = FILE_ERROR_FAILED; | 187 FileError error = FILE_ERROR_FAILED; |
188 change_list_loader_->CheckForUpdates( | 188 change_list_loader_->CheckForUpdates( |
189 google_apis::test_util::CreateCopyResultCallback(&error)); | 189 google_apis::test_util::CreateCopyResultCallback(&error)); |
190 content::RunAllBlockingPoolTasksUntilIdle(); | 190 content::RunAllBlockingPoolTasksUntilIdle(); |
191 return error; | 191 return error; |
192 } | 192 } |
193 | 193 |
194 } // namespace file_system | 194 } // namespace file_system |
195 } // namespace drive | 195 } // namespace drive |
OLD | NEW |