Index: chrome/browser/chromeos/disks/disk_mount_manager.cc |
diff --git a/chrome/browser/chromeos/disks/disk_mount_manager.cc b/chrome/browser/chromeos/disks/disk_mount_manager.cc |
index bcfd490dc98046592bf3d450a51a479498381f2b..98e24ac92405d89a489cf84ec2d15ba4b40416c5 100644 |
--- a/chrome/browser/chromeos/disks/disk_mount_manager.cc |
+++ b/chrome/browser/chromeos/disks/disk_mount_manager.cc |
@@ -376,6 +376,7 @@ class DiskMountManagerImpl : public DiskMountManager { |
disk_info.file_path(), |
disk_info.label(), |
disk_info.drive_label(), |
+ disk_info.uuid(), |
FindSystemPathPrefix(disk_info.system_path()), |
disk_info.device_type(), |
disk_info.total_size_in_bytes(), |
@@ -566,6 +567,7 @@ DiskMountManager::Disk::Disk(const std::string& device_path, |
const std::string& file_path, |
const std::string& device_label, |
const std::string& drive_label, |
+ const std::string& fs_uuid, |
const std::string& system_path_prefix, |
DeviceType device_type, |
uint64 total_size_in_bytes, |
@@ -580,6 +582,7 @@ DiskMountManager::Disk::Disk(const std::string& device_path, |
file_path_(file_path), |
device_label_(device_label), |
drive_label_(drive_label), |
+ fs_uuid_(fs_uuid), |
system_path_prefix_(system_path_prefix), |
device_type_(device_type), |
total_size_in_bytes_(total_size_in_bytes), |