Index: chrome/browser/chromeos/file_system_provider/provided_file_system_unittest.cc |
diff --git a/chrome/browser/chromeos/file_system_provider/provided_file_system_unittest.cc b/chrome/browser/chromeos/file_system_provider/provided_file_system_unittest.cc |
index 6de4a91238d44f529338b5f329f35a0455f3753e..67a44b2f9ef5cc5668e763a61fe9576345137eb3 100644 |
--- a/chrome/browser/chromeos/file_system_provider/provided_file_system_unittest.cc |
+++ b/chrome/browser/chromeos/file_system_provider/provided_file_system_unittest.cc |
@@ -193,13 +193,12 @@ class FileSystemProviderProvidedFileSystemTest : public testing::Test { |
profile_.reset(new TestingProfile); |
const base::FilePath mount_path = |
util::GetMountPath(profile_.get(), kExtensionId, kFileSystemId); |
+ MountOptions mount_options; |
+ mount_options.file_system_id = kFileSystemId; |
+ mount_options.display_name = kDisplayName; |
+ mount_options.supports_notify_tag = true; |
file_system_info_.reset( |
- new ProvidedFileSystemInfo(kExtensionId, |
- kFileSystemId, |
- kDisplayName, |
- false /* writable */, |
- true /* supports_notify_tag */, |
- mount_path)); |
+ new ProvidedFileSystemInfo(kExtensionId, mount_options, mount_path)); |
provided_file_system_.reset( |
new ProvidedFileSystem(profile_.get(), *file_system_info_.get())); |
event_router_.reset( |