| Index: chrome/browser/extensions/api/system_info_storage/test_storage_info_provider.cc
|
| diff --git a/chrome/browser/extensions/api/system_info_storage/test_storage_info_provider.cc b/chrome/browser/extensions/api/system_info_storage/test_storage_info_provider.cc
|
| index 884bbf22d1d05fa98d490b6fe3023c78303c56d1..6464c9d83e6db2d60426005318bf33b58234af70 100644
|
| --- a/chrome/browser/extensions/api/system_info_storage/test_storage_info_provider.cc
|
| +++ b/chrome/browser/extensions/api/system_info_storage/test_storage_info_provider.cc
|
| @@ -8,8 +8,8 @@
|
|
|
| namespace extensions {
|
|
|
| -using api::experimental_system_info_storage::ParseStorageUnitType;
|
| -using api::experimental_system_info_storage::StorageUnitInfo;
|
| +using api::system_info_storage::ParseStorageUnitType;
|
| +using api::system_info_storage::StorageUnitInfo;
|
| using systeminfo::kStorageTypeFixed;
|
| using systeminfo::kStorageTypeRemovable;
|
| using systeminfo::kStorageTypeUnknown;
|
| @@ -48,7 +48,6 @@ bool TestStorageInfoProvider::QueryInfo(extensions::StorageInfo* info) {
|
| unit->name = testing_data_[i].name;
|
| unit->type = ParseStorageUnitType(testing_data_[i].type);
|
| unit->capacity = testing_data_[i].capacity;
|
| - unit->available_capacity = testing_data_[i].available_capacity;
|
| info->push_back(unit);
|
| }
|
| return true;
|
|
|