| Index: chrome/browser/chromeos/file_system_provider/operations/move_entry_unittest.cc
|
| diff --git a/chrome/browser/chromeos/file_system_provider/operations/move_entry_unittest.cc b/chrome/browser/chromeos/file_system_provider/operations/move_entry_unittest.cc
|
| index 6351820572ae7ef89708062468fd4a25a81dbc50..643f636986f589283325ed62f3314893abdb07a2 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/operations/move_entry_unittest.cc
|
| +++ b/chrome/browser/chromeos/file_system_provider/operations/move_entry_unittest.cc
|
| @@ -46,7 +46,7 @@ class FileSystemProviderOperationsMoveEntryTest : 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_;
|
| @@ -107,7 +107,7 @@ TEST_F(FileSystemProviderOperationsMoveEntryTest, 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);
|
|
|
| MoveEntry move_entry(NULL, read_only_file_system_info,
|
| base::FilePath(kSourcePath), base::FilePath(kTargetPath),
|
|
|