Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(318)

Side by Side Diff: components/drive/change_list_processor_unittest.cc

Issue 1310713002: Moving chrome/browser/chromeos/drive/change_list* into components/drive (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed paths in components/drive/BUILD.gn Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/drive/change_list_processor.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « components/drive/change_list_processor.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698