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

Unified Diff: components/storage_monitor/volume_mount_watcher_win.cc

Issue 120303003: [StorageMonitor] Move gallery name generation to StorageInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unittest build error on mac/linux/chromeos Created 6 years, 9 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
« no previous file with comments | « components/storage_monitor/test_volume_mount_watcher_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/storage_monitor/volume_mount_watcher_win.cc
diff --git a/components/storage_monitor/volume_mount_watcher_win.cc b/components/storage_monitor/volume_mount_watcher_win.cc
index 101cbda2137b577731337b223184e163c504b825..5dc2013782e9b41f625b0d5b73f2fee6d2006487 100644
--- a/components/storage_monitor/volume_mount_watcher_win.cc
+++ b/components/storage_monitor/volume_mount_watcher_win.cc
@@ -174,9 +174,8 @@ bool GetDeviceDetails(const base::FilePath& device_path, StorageInfo* info) {
// TODO(gbillock): if volume_label.empty(), get the vendor/model information
// for the volume.
- *info = StorageInfo(device_id, base::string16(), mount_point,
- volume_label, base::string16(), base::string16(),
- total_size_in_bytes);
+ *info = StorageInfo(device_id, mount_point, volume_label, base::string16(),
+ base::string16(), total_size_in_bytes);
return true;
}
« no previous file with comments | « components/storage_monitor/test_volume_mount_watcher_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698