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 8f389982f7b189401a6c352f4c83e1bdf0a86ca6..09855e494f47ae26b8af3d72ee392e660322686e 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 |
@@ -38,13 +38,10 @@ class FileSystemProviderOperationsCopyEntryTest : public testing::Test { |
virtual ~FileSystemProviderOperationsCopyEntryTest() {} |
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(FileSystemProviderOperationsCopyEntryTest, 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 */); |
CopyEntry copy_entry(NULL, |