| Index: chrome/browser/chromeos/file_manager/external_filesystem_apitest.cc
|
| diff --git a/chrome/browser/chromeos/file_manager/external_filesystem_apitest.cc b/chrome/browser/chromeos/file_manager/external_filesystem_apitest.cc
|
| index 1eab05a8e329609fad484f62a2ff8b9fdc3b8597..29dd8ceeac8c3d618a7f10d83be19a8902282e4e 100644
|
| --- a/chrome/browser/chromeos/file_manager/external_filesystem_apitest.cc
|
| +++ b/chrome/browser/chromeos/file_manager/external_filesystem_apitest.cc
|
| @@ -452,8 +452,10 @@ class LocalFileSystemExtensionApiTest : public FileSystemExtensionApiTestBase {
|
| storage::kFileSystemTypeNativeLocal,
|
| storage::FileSystemMountOption(),
|
| mount_point_dir_));
|
| - VolumeManager::Get(browser()->profile())->AddVolumeInfoForTesting(
|
| - mount_point_dir_, VOLUME_TYPE_TESTING, chromeos::DEVICE_TYPE_UNKNOWN);
|
| + VolumeManager::Get(browser()->profile())
|
| + ->AddVolumeInfoForTesting(mount_point_dir_, VOLUME_TYPE_TESTING,
|
| + chromeos::DEVICE_TYPE_UNKNOWN,
|
| + false /* read_only */);
|
| }
|
|
|
| private:
|
| @@ -483,8 +485,10 @@ class RestrictedFileSystemExtensionApiTest
|
| storage::kFileSystemTypeRestrictedNativeLocal,
|
| storage::FileSystemMountOption(),
|
| mount_point_dir_));
|
| - VolumeManager::Get(browser()->profile())->AddVolumeInfoForTesting(
|
| - mount_point_dir_, VOLUME_TYPE_TESTING, chromeos::DEVICE_TYPE_UNKNOWN);
|
| + VolumeManager::Get(browser()->profile())
|
| + ->AddVolumeInfoForTesting(mount_point_dir_, VOLUME_TYPE_TESTING,
|
| + chromeos::DEVICE_TYPE_UNKNOWN,
|
| + false /* read_only */);
|
| }
|
|
|
| private:
|
| @@ -683,9 +687,9 @@ class LocalAndDriveFileSystemExtensionApiTest
|
| storage::FileSystemMountOption(),
|
| local_mount_point_dir_));
|
| VolumeManager::Get(browser()->profile())
|
| - ->AddVolumeInfoForTesting(local_mount_point_dir_,
|
| - VOLUME_TYPE_TESTING,
|
| - chromeos::DEVICE_TYPE_UNKNOWN);
|
| + ->AddVolumeInfoForTesting(local_mount_point_dir_, VOLUME_TYPE_TESTING,
|
| + chromeos::DEVICE_TYPE_UNKNOWN,
|
| + false /* read_only */);
|
| test_util::WaitUntilDriveMountPointIsAdded(browser()->profile());
|
| }
|
|
|
|
|