| Index: chrome/browser/chromeos/file_system_provider/operations/copy_entry_unittest.cc
|
| diff --git a/chrome/browser/chromeos/file_system_provider/operations/copy_entry_unittest.cc b/chrome/browser/chromeos/file_system_provider/operations/copy_entry_unittest.cc
|
| index f864780402bd6d198917424614b631457d19c9b2..90c8f39c9f9465f5bf7bcead693cddbffa98adb0 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/operations/copy_entry_unittest.cc
|
| +++ b/chrome/browser/chromeos/file_system_provider/operations/copy_entry_unittest.cc
|
| @@ -45,7 +45,7 @@ class FileSystemProviderOperationsCopyEntryTest : 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_;
|
| @@ -106,7 +106,7 @@ TEST_F(FileSystemProviderOperationsCopyEntryTest, 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);
|
|
|
| CopyEntry copy_entry(NULL, read_only_file_system_info,
|
| base::FilePath(kSourcePath), base::FilePath(kTargetPath),
|
|
|