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/change_list_processor.h" | 5 #include "chrome/browser/chromeos/drive/change_list_processor.h" |
6 | 6 |
7 #include "base/files/scoped_temp_dir.h" | 7 #include "base/files/scoped_temp_dir.h" |
8 #include "base/single_thread_task_runner.h" | 8 #include "base/single_thread_task_runner.h" |
9 #include "base/thread_task_runner_handle.h" | 9 #include "base/thread_task_runner_handle.h" |
10 #include "base/values.h" | 10 #include "base/values.h" |
11 #include "chrome/browser/chromeos/drive/drive.pb.h" | 11 #include "chrome/browser/chromeos/drive/drive.pb.h" |
| 12 #include "chrome/browser/chromeos/drive/drive_test_util.h" |
12 #include "chrome/browser/chromeos/drive/fake_free_disk_space_getter.h" | 13 #include "chrome/browser/chromeos/drive/fake_free_disk_space_getter.h" |
13 #include "chrome/browser/chromeos/drive/file_cache.h" | 14 #include "chrome/browser/chromeos/drive/file_cache.h" |
14 #include "chrome/browser/chromeos/drive/file_change.h" | 15 #include "chrome/browser/chromeos/drive/file_change.h" |
15 #include "chrome/browser/chromeos/drive/file_system_core_util.h" | 16 #include "chrome/browser/chromeos/drive/file_system_core_util.h" |
16 #include "chrome/browser/chromeos/drive/resource_metadata.h" | 17 #include "chrome/browser/chromeos/drive/resource_metadata.h" |
17 #include "chrome/browser/chromeos/drive/test_util.h" | |
18 #include "content/public/test/test_browser_thread_bundle.h" | 18 #include "content/public/test/test_browser_thread_bundle.h" |
19 #include "google_apis/drive/drive_api_parser.h" | 19 #include "google_apis/drive/drive_api_parser.h" |
20 #include "google_apis/drive/test_util.h" | 20 #include "google_apis/drive/test_util.h" |
21 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
22 | 22 |
23 namespace drive { | 23 namespace drive { |
24 namespace internal { | 24 namespace internal { |
25 | 25 |
26 namespace { | 26 namespace { |
27 | 27 |
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
649 ApplyChangeList(change_lists.Pass(), &changed_files)); | 649 ApplyChangeList(change_lists.Pass(), &changed_files)); |
650 | 650 |
651 // The change is rejected due to the old modification date. | 651 // The change is rejected due to the old modification date. |
652 ResourceEntry entry; | 652 ResourceEntry entry; |
653 EXPECT_EQ(FILE_ERROR_OK, metadata_->GetResourceEntryById(local_id, &entry)); | 653 EXPECT_EQ(FILE_ERROR_OK, metadata_->GetResourceEntryById(local_id, &entry)); |
654 EXPECT_EQ(new_file_local.title(), entry.title()); | 654 EXPECT_EQ(new_file_local.title(), entry.title()); |
655 } | 655 } |
656 | 656 |
657 } // namespace internal | 657 } // namespace internal |
658 } // namespace drive | 658 } // namespace drive |
OLD | NEW |