diff options
Diffstat (limited to 'webkit/fileapi/syncable/syncable_file_system_unittest.cc')
-rw-r--r-- | webkit/fileapi/syncable/syncable_file_system_unittest.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/webkit/fileapi/syncable/syncable_file_system_unittest.cc b/webkit/fileapi/syncable/syncable_file_system_unittest.cc index 2bdf834..26d3aa6 100644 --- a/webkit/fileapi/syncable/syncable_file_system_unittest.cc +++ b/webkit/fileapi/syncable/syncable_file_system_unittest.cc @@ -186,13 +186,13 @@ TEST_F(SyncableFileSystemTest, ChangeTrackerSimple) { VerifyAndClearChange(URL(kPath0), FileChange(FileChange::FILE_CHANGE_ADD_OR_UPDATE, - FileChange::FILE_TYPE_DIRECTORY)); + SYNC_FILE_TYPE_DIRECTORY)); VerifyAndClearChange(URL(kPath1), FileChange(FileChange::FILE_CHANGE_ADD_OR_UPDATE, - FileChange::FILE_TYPE_DIRECTORY)); + SYNC_FILE_TYPE_DIRECTORY)); VerifyAndClearChange(URL(kPath2), FileChange(FileChange::FILE_CHANGE_ADD_OR_UPDATE, - FileChange::FILE_TYPE_FILE)); + SYNC_FILE_TYPE_FILE)); // Creates and removes a same directory. EXPECT_EQ(base::PLATFORM_FILE_OK, @@ -222,13 +222,13 @@ TEST_F(SyncableFileSystemTest, ChangeTrackerSimple) { VerifyAndClearChange(URL(kPath0), FileChange(FileChange::FILE_CHANGE_DELETE, - FileChange::FILE_TYPE_DIRECTORY)); + SYNC_FILE_TYPE_DIRECTORY)); VerifyAndClearChange(URL(kPath1), FileChange(FileChange::FILE_CHANGE_DELETE, - FileChange::FILE_TYPE_DIRECTORY)); + SYNC_FILE_TYPE_DIRECTORY)); VerifyAndClearChange(URL(kPath2), FileChange(FileChange::FILE_CHANGE_DELETE, - FileChange::FILE_TYPE_FILE)); + SYNC_FILE_TYPE_FILE)); } } // namespace fileapi |