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

Unified Diff: chrome/browser/extensions/api/system_info_storage/storage_info_provider_win.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_win.cc
diff --git a/chrome/browser/extensions/api/system_info_storage/storage_info_provider_win.cc b/chrome/browser/extensions/api/system_info_storage/storage_info_provider_win.cc
index a8c8088c73c8a16bd198124197e14c3c21a5bd87..b9257fccb3ca115186d0d1cc1495d06a095808ed 100644
--- a/chrome/browser/extensions/api/system_info_storage/storage_info_provider_win.cc
+++ b/chrome/browser/extensions/api/system_info_storage/storage_info_provider_win.cc
@@ -63,7 +63,7 @@ bool StorageInfoProviderWin::QueryUnitInfo(const std::string& id,
DWORD ret = GetDriveType(drive.c_str());
switch (ret) {
case DRIVE_FIXED:
- type = systeminfo::kStorageTypeHardDisk;
+ type = systeminfo::kStorageTypeFixed;
break;
case DRIVE_REMOVABLE:
type = systeminfo::kStorageTypeRemovable;

Powered by Google App Engine
This is Rietveld 408576698