| 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/change_list_loader.h" |    5 #include "components/drive/change_list_loader.h" | 
|    6  |    6  | 
|    7 #include "base/callback_helpers.h" |    7 #include "base/callback_helpers.h" | 
|    8 #include "base/files/scoped_temp_dir.h" |    8 #include "base/files/scoped_temp_dir.h" | 
|    9 #include "base/memory/scoped_ptr.h" |    9 #include "base/memory/scoped_ptr.h" | 
|   10 #include "base/prefs/testing_pref_service.h" |   10 #include "base/prefs/testing_pref_service.h" | 
|   11 #include "base/run_loop.h" |   11 #include "base/run_loop.h" | 
|   12 #include "base/single_thread_task_runner.h" |   12 #include "base/single_thread_task_runner.h" | 
|   13 #include "base/thread_task_runner_handle.h" |   13 #include "base/thread_task_runner_handle.h" | 
|   14 #include "chrome/browser/chromeos/drive/change_list_loader_observer.h" |   14 #include "components/drive/change_list_loader_observer.h" | 
|   15 #include "components/drive/drive_test_util.h" |   15 #include "components/drive/drive_test_util.h" | 
|   16 #include "components/drive/event_logger.h" |   16 #include "components/drive/event_logger.h" | 
|   17 #include "components/drive/file_cache.h" |   17 #include "components/drive/file_cache.h" | 
|   18 #include "components/drive/file_change.h" |   18 #include "components/drive/file_change.h" | 
|   19 #include "components/drive/file_system_core_util.h" |   19 #include "components/drive/file_system_core_util.h" | 
|   20 #include "components/drive/job_scheduler.h" |   20 #include "components/drive/job_scheduler.h" | 
|   21 #include "components/drive/resource_metadata.h" |   21 #include "components/drive/resource_metadata.h" | 
|   22 #include "components/drive/service/fake_drive_service.h" |   22 #include "components/drive/service/fake_drive_service.h" | 
|   23 #include "components/drive/service/test_util.h" |   23 #include "components/drive/service/test_util.h" | 
|   24 #include "content/public/test/test_browser_thread_bundle.h" |   24 #include "content/public/test/test_browser_thread_bundle.h" | 
| (...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  392  |  392  | 
|  393   // Unlock the loader, this should resume the pending update. |  393   // Unlock the loader, this should resume the pending update. | 
|  394   lock.reset(); |  394   lock.reset(); | 
|  395   base::RunLoop().RunUntilIdle(); |  395   base::RunLoop().RunUntilIdle(); | 
|  396   EXPECT_TRUE( |  396   EXPECT_TRUE( | 
|  397       observer.changed_files().CountDirectory(util::GetDriveMyDriveRootPath())); |  397       observer.changed_files().CountDirectory(util::GetDriveMyDriveRootPath())); | 
|  398 } |  398 } | 
|  399  |  399  | 
|  400 }  // namespace internal |  400 }  // namespace internal | 
|  401 }  // namespace drive |  401 }  // namespace drive | 
| OLD | NEW |