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 70c9972fbb3a56f04b0d557c58b28be541d60ad5..ecb9d1cb37f29755391a50e9845957a082fbd8fe 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 |
@@ -38,13 +38,10 @@ class FileSystemProviderOperationsMoveEntryTest : public testing::Test { |
virtual ~FileSystemProviderOperationsMoveEntryTest() {} |
virtual void SetUp() override { |
+ MountOptions mount_options(kFileSystemId, "" /* display_name */); |
+ mount_options.writable = true; |
file_system_info_ = |
- ProvidedFileSystemInfo(kExtensionId, |
- kFileSystemId, |
- "" /* file_system_name */, |
- true /* writable */, |
- false /* supports_notify_tag */, |
- base::FilePath() /* mount_path */); |
+ ProvidedFileSystemInfo(kExtensionId, mount_options, base::FilePath()); |
} |
ProvidedFileSystemInfo file_system_info_; |
@@ -108,10 +105,7 @@ TEST_F(FileSystemProviderOperationsMoveEntryTest, Execute_ReadOnly) { |
const ProvidedFileSystemInfo read_only_file_system_info( |
kExtensionId, |
- kFileSystemId, |
- "" /* file_system_name */, |
- false /* writable */, |
- false /* supports_notify_tag */, |
+ MountOptions(kFileSystemId, "" /* display_name */), |
base::FilePath() /* mount_path */); |
MoveEntry move_entry(NULL, |