Index: chrome/browser/chromeos/file_system_provider/operations/delete_entry_unittest.cc |
diff --git a/chrome/browser/chromeos/file_system_provider/operations/delete_entry_unittest.cc b/chrome/browser/chromeos/file_system_provider/operations/delete_entry_unittest.cc |
index a7067e1dfb72d3420fef4c3c882a342cc65ebc25..906118be602a63fcbafd1a09fc5f29302896cd7b 100644 |
--- a/chrome/browser/chromeos/file_system_provider/operations/delete_entry_unittest.cc |
+++ b/chrome/browser/chromeos/file_system_provider/operations/delete_entry_unittest.cc |
@@ -43,7 +43,7 @@ class FileSystemProviderOperationsDeleteEntryTest : public testing::Test { |
mount_options.writable = true; |
file_system_info_ = ProvidedFileSystemInfo( |
kExtensionId, mount_options, base::FilePath(), false /* configurable */, |
- extensions::SOURCE_FILE); |
+ true /* watchable */, extensions::SOURCE_FILE); |
} |
ProvidedFileSystemInfo file_system_info_; |
@@ -105,7 +105,7 @@ TEST_F(FileSystemProviderOperationsDeleteEntryTest, Execute_ReadOnly) { |
const ProvidedFileSystemInfo read_only_file_system_info( |
kExtensionId, MountOptions(kFileSystemId, "" /* display_name */), |
base::FilePath() /* mount_path */, false /* configurable */, |
- extensions::SOURCE_FILE); |
+ true /* watchable */, extensions::SOURCE_FILE); |
DeleteEntry delete_entry(NULL, read_only_file_system_info, |
base::FilePath(kEntryPath), true /* recursive */, |