| 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 "components/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 "components/drive/drive.pb.h" |   11 #include "components/drive/drive.pb.h" | 
|   12 #include "components/drive/drive_test_util.h" |   12 #include "components/drive/drive_test_util.h" | 
|   13 #include "components/drive/fake_free_disk_space_getter.h" |   13 #include "components/drive/fake_free_disk_space_getter.h" | 
|   14 #include "components/drive/file_cache.h" |   14 #include "components/drive/file_cache.h" | 
|   15 #include "components/drive/file_change.h" |   15 #include "components/drive/file_change.h" | 
| (...skipping 633 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 |