| Index: chrome/browser/extensions/api/system_info_storage/system_info_storage_api.h
|
| diff --git a/chrome/browser/extensions/api/system_info_storage/system_info_storage_api.h b/chrome/browser/extensions/api/system_info_storage/system_info_storage_api.h
|
| index 7d99e844cfc5f6bbda8e2ca7e09b8a2c11ed0037..307ba2bf7ad0f3f287d19c363afe19b4a467a0ce 100644
|
| --- a/chrome/browser/extensions/api/system_info_storage/system_info_storage_api.h
|
| +++ b/chrome/browser/extensions/api/system_info_storage/system_info_storage_api.h
|
| @@ -14,8 +14,8 @@ namespace extensions {
|
| // call relative to browser UI thread.
|
| class SystemInfoStorageGetFunction : public AsyncExtensionFunction {
|
| public:
|
| - DECLARE_EXTENSION_FUNCTION("experimental.systemInfo.storage.get",
|
| - EXPERIMENTAL_SYSTEMINFO_STORAGE_GET)
|
| + DECLARE_EXTENSION_FUNCTION("systemInfo.storage.get",
|
| + SYSTEMINFO_STORAGE_GET);
|
| SystemInfoStorageGetFunction();
|
|
|
| private:
|
| @@ -28,8 +28,8 @@ class SystemInfoStorageGetFunction : public AsyncExtensionFunction {
|
| class SystemInfoStorageEjectDeviceFunction
|
| : public AsyncExtensionFunction {
|
| public:
|
| - DECLARE_EXTENSION_FUNCTION("experimental.systemInfo.storage.ejectDevice",
|
| - EXPERIMENTAL_SYSTEMINFO_STORAGE_EJECTDEVICE);
|
| + DECLARE_EXTENSION_FUNCTION("systemInfo.storage.ejectDevice",
|
| + SYSTEMINFO_STORAGE_EJECTDEVICE);
|
|
|
| protected:
|
| virtual ~SystemInfoStorageEjectDeviceFunction();
|
|
|