Chromium Code Reviews

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

Issue 11827026: Overhaul JSON Schema Compiler to support a number of features required to (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: chrome/browser/extensions/api/system_info_storage/storage_info_provider_linux_unittest.cc
diff --git a/chrome/browser/extensions/api/system_info_storage/storage_info_provider_linux_unittest.cc b/chrome/browser/extensions/api/system_info_storage/storage_info_provider_linux_unittest.cc
index 2547d98e5efb38daacea0ffce1280656e3b8e39a..666645ac12608c87828c1646e3ce63deccfb43df 100644
--- a/chrome/browser/extensions/api/system_info_storage/storage_info_provider_linux_unittest.cc
+++ b/chrome/browser/extensions/api/system_info_storage/storage_info_provider_linux_unittest.cc
@@ -14,7 +14,7 @@
namespace extensions {
-using api::experimental_system_info_storage::FromStorageUnitTypeString;
+using api::experimental_system_info_storage::ParseStorageUnitType;
using api::experimental_system_info_storage::StorageUnitInfo;
using api::experimental_system_info_storage::ToString;
@@ -69,7 +69,7 @@ class StorageInfoProviderLinuxWrapper : public StorageInfoProviderLinux {
if (!QueryStorageType(mount_path, &type))
return false;
info->id = mount_path;
- info->type = FromStorageUnitTypeString(type);
+ info->type = ParseStorageUnitType(type);
info->capacity = mount_entry_map_[mount_path].capacity;
info->available_capacity = mount_entry_map_[mount_path].available_capacity;
return true;

Powered by Google App Engine