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

Unified Diff: chrome/browser/extensions/api/system_info_cpu/system_info_cpu_api.h

Issue 15817008: Move systemInfo.cpu API out out experimental namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 7 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_cpu/system_info_cpu_api.h
diff --git a/chrome/browser/extensions/api/system_info_cpu/system_info_cpu_api.h b/chrome/browser/extensions/api/system_info_cpu/system_info_cpu_api.h
index b4d05af57d5f0058eabf3330cf1232161929e135..905589ef14ef9b1dc2fb7bc9ba51e71b92c6f1eb 100644
--- a/chrome/browser/extensions/api/system_info_cpu/system_info_cpu_api.h
+++ b/chrome/browser/extensions/api/system_info_cpu/system_info_cpu_api.h
@@ -5,21 +5,21 @@
#define CHROME_BROWSER_EXTENSIONS_API_SYSTEM_INFO_CPU_SYSTEM_INFO_CPU_API_H_
#include "chrome/browser/extensions/extension_function.h"
-#include "chrome/common/extensions/api/experimental_system_info_cpu.h"
+#include "chrome/common/extensions/api/system_info_cpu.h"
namespace extensions {
class SystemInfoCpuGetFunction : public AsyncExtensionFunction {
public:
- DECLARE_EXTENSION_FUNCTION("experimental.systemInfo.cpu.get",
- EXPERIMENTAL_SYSTEMINFO_CPU_GET)
+ DECLARE_EXTENSION_FUNCTION("systemInfo.cpu.get",
+ SYSTEMINFO_CPU_GET)
Hongbo Min 2013/05/30 11:51:12 You might want to merge 14-15 lines.
Tim Song 2013/05/31 01:08:35 Done.
SystemInfoCpuGetFunction();
private:
virtual ~SystemInfoCpuGetFunction();
virtual bool RunImpl() OVERRIDE;
void OnGetCpuInfoCompleted(
- const api::experimental_system_info_cpu::CpuInfo& info, bool success);
+ const api::system_info_cpu::CpuInfo& info, bool success);
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698