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

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

Issue 18578008: [SystemInfo API] Move Storage API out of experimental namespace and rename to the "system" namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 5 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/system_info_storage_api.cc
diff --git a/chrome/browser/extensions/api/system_info_storage/system_info_storage_api.cc b/chrome/browser/extensions/api/system_info_storage/system_info_storage_api.cc
index cc9d9055b0ab035c16636218edc58214de89edb1..121c089e01f96b5c399c3de2b6a358c82c2616b0 100644
--- a/chrome/browser/extensions/api/system_info_storage/system_info_storage_api.cc
+++ b/chrome/browser/extensions/api/system_info_storage/system_info_storage_api.cc
@@ -5,7 +5,7 @@
namespace extensions {
-using api::experimental_system_info_storage::StorageUnitInfo;
+using api::system_info_storage::StorageUnitInfo;
SystemInfoStorageGetFunction::SystemInfoStorageGetFunction() {
}
@@ -24,8 +24,7 @@ void SystemInfoStorageGetFunction::OnGetStorageInfoCompleted(
const StorageInfo& info, bool success) {
if (success) {
- results_ =
- api::experimental_system_info_storage::Get::Results::Create(info);
+ results_ = api::system_info_storage::Get::Results::Create(info);
} else {
SetError("Error occurred when querying storage information.");
}

Powered by Google App Engine
This is Rietveld 408576698