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

Unified Diff: components/storage_monitor/storage_monitor_mac_unittest.mm

Issue 120303003: [StorageMonitor] Move gallery name generation to StorageInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update Created 6 years, 10 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: components/storage_monitor/storage_monitor_mac_unittest.mm
diff --git a/components/storage_monitor/storage_monitor_mac_unittest.mm b/components/storage_monitor/storage_monitor_mac_unittest.mm
index f8d79b30b839e04b0d3aabb20a29e0680ee4dadf..39ff632ecb24fc876277a0ec6112ac361487614b 100644
--- a/components/storage_monitor/storage_monitor_mac_unittest.mm
+++ b/components/storage_monitor/storage_monitor_mac_unittest.mm
@@ -31,9 +31,8 @@ StorageInfo CreateStorageInfo(
const base::FilePath& mount_point,
uint64 size_bytes) {
return StorageInfo(
- device_id, base::string16(), mount_point.value(),
- base::string16(), base::string16(), base::UTF8ToUTF16(model_name),
- size_bytes);
+ device_id, mount_point.value(), base::string16(), base::string16(),
+ base::UTF8ToUTF16(model_name), size_bytes);
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698