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

Unified Diff: chrome/browser/extensions/api/system_info_storage/storage_info_provider_mac.cc

Issue 15846002: Rename 'harddisk' to 'fixed' for storage unit type (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 7 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/extensions/api/system_info_storage/storage_info_provider_mac.cc
diff --git a/chrome/browser/extensions/api/system_info_storage/storage_info_provider_mac.cc b/chrome/browser/extensions/api/system_info_storage/storage_info_provider_mac.cc
index d16d28ed8c89bafa64c80076b8e1cf4ed759da46..125152bd8bcfcd2988cade99876853e892652be0 100644
--- a/chrome/browser/extensions/api/system_info_storage/storage_info_provider_mac.cc
+++ b/chrome/browser/extensions/api/system_info_storage/storage_info_provider_mac.cc
@@ -129,7 +129,7 @@ void StorageInfoProviderMac::BuildStorageTypeMap() {
else if (CFBooleanGetValue(base::mac::CFCast<CFBooleanRef>(removable_cf)))
dev_path_to_type_map_[dev_path] = systeminfo::kStorageTypeRemovable;
else
- dev_path_to_type_map_[dev_path] = systeminfo::kStorageTypeHardDisk;
+ dev_path_to_type_map_[dev_path] = systeminfo::kStorageTypeFixed;
}
}

Powered by Google App Engine
This is Rietveld 408576698