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 "chrome/browser/chromeos/drive/change_list_loader.h" |
6 | 6 |
7 #include "base/files/scoped_temp_dir.h" | 7 #include "base/files/scoped_temp_dir.h" |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "base/prefs/testing_pref_service.h" | 9 #include "base/prefs/testing_pref_service.h" |
10 #include "base/run_loop.h" | 10 #include "base/run_loop.h" |
11 #include "chrome/browser/chromeos/drive/change_list_loader_observer.h" | 11 #include "chrome/browser/chromeos/drive/change_list_loader_observer.h" |
| 12 #include "chrome/browser/chromeos/drive/change_list_processor.h" |
12 #include "chrome/browser/chromeos/drive/file_cache.h" | 13 #include "chrome/browser/chromeos/drive/file_cache.h" |
13 #include "chrome/browser/chromeos/drive/file_system_util.h" | 14 #include "chrome/browser/chromeos/drive/file_system_util.h" |
14 #include "chrome/browser/chromeos/drive/job_scheduler.h" | 15 #include "chrome/browser/chromeos/drive/job_scheduler.h" |
15 #include "chrome/browser/chromeos/drive/resource_metadata.h" | 16 #include "chrome/browser/chromeos/drive/resource_metadata.h" |
16 #include "chrome/browser/chromeos/drive/test_util.h" | 17 #include "chrome/browser/chromeos/drive/test_util.h" |
17 #include "chrome/browser/drive/fake_drive_service.h" | 18 #include "chrome/browser/drive/fake_drive_service.h" |
18 #include "chrome/browser/google_apis/test_util.h" | 19 #include "chrome/browser/google_apis/test_util.h" |
19 #include "content/public/test/test_browser_thread_bundle.h" | 20 #include "content/public/test/test_browser_thread_bundle.h" |
20 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
21 | 22 |
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 // The new file is found in the local metadata. | 434 // The new file is found in the local metadata. |
434 base::FilePath new_file_path = | 435 base::FilePath new_file_path = |
435 util::GetDriveMyDriveRootPath().AppendASCII(gdata_entry->title()); | 436 util::GetDriveMyDriveRootPath().AppendASCII(gdata_entry->title()); |
436 ResourceEntry entry; | 437 ResourceEntry entry; |
437 EXPECT_EQ(FILE_ERROR_OK, | 438 EXPECT_EQ(FILE_ERROR_OK, |
438 metadata_->GetResourceEntryByPath(new_file_path, &entry)); | 439 metadata_->GetResourceEntryByPath(new_file_path, &entry)); |
439 } | 440 } |
440 | 441 |
441 } // namespace internal | 442 } // namespace internal |
442 } // namespace drive | 443 } // namespace drive |
OLD | NEW |