Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(499)

Unified Diff: chrome/browser/chromeos/disks/disk_mount_manager.cc

Issue 10830003: Extract and dispatch device uuid in media device attached notification message. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: '' Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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),

Powered by Google App Engine
This is Rietveld 408576698