| Index: chrome/browser/chromeos/file_system_provider/operations/write_file_unittest.cc
|
| diff --git a/chrome/browser/chromeos/file_system_provider/operations/write_file_unittest.cc b/chrome/browser/chromeos/file_system_provider/operations/write_file_unittest.cc
|
| index 88b83722e179507e46672823ae0410b696701a2d..809b0b42d569062d87851e7f1a2698204178bcfc 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/operations/write_file_unittest.cc
|
| +++ b/chrome/browser/chromeos/file_system_provider/operations/write_file_unittest.cc
|
| @@ -45,6 +45,7 @@ class FileSystemProviderOperationsWriteFileTest : public testing::Test {
|
| kFileSystemId,
|
| "" /* display_name */,
|
| true /* writable */,
|
| + false /* supports_notify_tag */,
|
| base::FilePath() /* mount_path */);
|
| io_buffer_ = make_scoped_refptr(new net::StringIOBuffer(kWriteData));
|
| }
|
| @@ -115,11 +116,12 @@ TEST_F(FileSystemProviderOperationsWriteFileTest, Execute_ReadOnly) {
|
| util::StatusCallbackLog callback_log;
|
|
|
| const ProvidedFileSystemInfo read_only_file_system_info(
|
| - kExtensionId,
|
| - kFileSystemId,
|
| - "" /* file_system_name */,
|
| - false /* writable */,
|
| - base::FilePath() /* mount_path */);
|
| + kExtensionId,
|
| + kFileSystemId,
|
| + "" /* file_system_name */,
|
| + false /* writable */,
|
| + false /* supports_notify_tag */,
|
| + base::FilePath() /* mount_path */);
|
|
|
| WriteFile write_file(NULL,
|
| read_only_file_system_info,
|
|
|