| OLD | NEW | 
|    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 "chrome/browser/chromeos/drive/sync_client.h" |    5 #include "chrome/browser/chromeos/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/prefs/testing_pref_service.h" | 
|   12 #include "base/run_loop.h" |   12 #include "base/run_loop.h" | 
|   13 #include "base/single_thread_task_runner.h" |   13 #include "base/single_thread_task_runner.h" | 
|   14 #include "base/test/test_timeouts.h" |   14 #include "base/test/test_timeouts.h" | 
|   15 #include "base/thread_task_runner_handle.h" |   15 #include "base/thread_task_runner_handle.h" | 
|   16 #include "chrome/browser/chromeos/drive/change_list_loader.h" |  | 
|   17 #include "chrome/browser/chromeos/drive/file_system/move_operation.h" |   16 #include "chrome/browser/chromeos/drive/file_system/move_operation.h" | 
|   18 #include "chrome/browser/chromeos/drive/file_system/operation_delegate.h" |   17 #include "chrome/browser/chromeos/drive/file_system/operation_delegate.h" | 
|   19 #include "chrome/browser/chromeos/drive/file_system/remove_operation.h" |   18 #include "chrome/browser/chromeos/drive/file_system/remove_operation.h" | 
 |   19 #include "components/drive/change_list_loader.h" | 
|   20 #include "components/drive/drive.pb.h" |   20 #include "components/drive/drive.pb.h" | 
|   21 #include "components/drive/drive_test_util.h" |   21 #include "components/drive/drive_test_util.h" | 
|   22 #include "components/drive/event_logger.h" |   22 #include "components/drive/event_logger.h" | 
|   23 #include "components/drive/fake_free_disk_space_getter.h" |   23 #include "components/drive/fake_free_disk_space_getter.h" | 
|   24 #include "components/drive/file_cache.h" |   24 #include "components/drive/file_cache.h" | 
|   25 #include "components/drive/file_change.h" |   25 #include "components/drive/file_change.h" | 
|   26 #include "components/drive/file_system_core_util.h" |   26 #include "components/drive/file_system_core_util.h" | 
|   27 #include "components/drive/job_scheduler.h" |   27 #include "components/drive/job_scheduler.h" | 
|   28 #include "components/drive/resource_entry_conversion.h" |   28 #include "components/drive/resource_entry_conversion.h" | 
|   29 #include "components/drive/resource_metadata.h" |   29 #include "components/drive/resource_metadata.h" | 
| (...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  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 | 
| OLD | NEW |