Index: chrome/browser/extensions/api/system_info_memory/system_info_memory_api.h |
diff --git a/chrome/browser/extensions/api/system_info_memory/system_info_memory_api.h b/chrome/browser/extensions/api/system_info_memory/system_info_memory_api.h |
index e3eaec1a58cc8a2ffbdda1835501dc0edc585fd3..3a157b8226bb0e6e65e3b141f5a8d8f6ea78d5ed 100644 |
--- a/chrome/browser/extensions/api/system_info_memory/system_info_memory_api.h |
+++ b/chrome/browser/extensions/api/system_info_memory/system_info_memory_api.h |
@@ -6,21 +6,20 @@ |
#define CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INFO_MEMORY_SYSTEM_INFO_MEMORY_API_H_ |
#include "chrome/browser/extensions/extension_function.h" |
-#include "chrome/common/extensions/api/experimental_system_info_memory.h" |
+#include "chrome/common/extensions/api/system_info_memory.h" |
namespace extensions { |
class SystemInfoMemoryGetFunction : public AsyncExtensionFunction { |
public: |
- DECLARE_EXTENSION_FUNCTION("experimental.systemInfo.memory.get", |
- EXPERIMENTAL_SYSTEMINFO_MEMORY_GET) |
+ DECLARE_EXTENSION_FUNCTION("systemInfo.memory.get", SYSTEMINFO_MEMORY_GET) |
SystemInfoMemoryGetFunction(); |
private: |
virtual ~SystemInfoMemoryGetFunction(); |
virtual bool RunImpl() OVERRIDE; |
void OnGetMemoryInfoCompleted( |
- const api::experimental_system_info_memory::MemoryInfo& info, |
+ const api::system_info_memory::MemoryInfo& info, |
bool success); |
}; |