Index: chrome/browser/chromeos/extensions/file_manager/private_api_util.cc |
diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_util.cc b/chrome/browser/chromeos/extensions/file_manager/private_api_util.cc |
index c58fcd1d6522b258e3c5d5bd8e7fa70be0669bdb..fd6758f6eac1f38bf1f978ea01cb6f5a04813999 100644 |
--- a/chrome/browser/chromeos/extensions/file_manager/private_api_util.cc |
+++ b/chrome/browser/chromeos/extensions/file_manager/private_api_util.cc |
@@ -127,15 +127,6 @@ void VolumeInfoToVolumeMetadata( |
DCHECK(volume_metadata); |
DCHECK(!volume_info.mount_path.empty()); |
- // Convert mount point path to relative path with the external file system |
- // exposed within File API. |
- base::FilePath relative_mount_path; |
- if (ConvertAbsoluteFilePathToRelativeFileSystemPath( |
- profile, kFileManagerAppId, base::FilePath(volume_info.mount_path), |
- &relative_mount_path)) { |
- volume_metadata->mount_path = "/" + relative_mount_path.AsUTF8Unsafe(); |
- } |
- |
volume_metadata->volume_id = volume_info.volume_id; |
// TODO(kinaba): fill appropriate information once multi-profile support is |