Index: chrome/browser/extensions/api/processes/processes_api.h |
diff --git a/chrome/browser/extensions/api/processes/processes_api.h b/chrome/browser/extensions/api/processes/processes_api.h |
index 312dd965e8e64552f64d1f204805c29b67773169..502b4cf8e83696252803aaf23ba3616f1117b425 100644 |
--- a/chrome/browser/extensions/api/processes/processes_api.h |
+++ b/chrome/browser/extensions/api/processes/processes_api.h |
@@ -152,8 +152,8 @@ class GetProcessIdForTabFunction : public AsyncExtensionFunction, |
// Storage for the tab ID parameter. |
int tab_id_; |
- DECLARE_EXTENSION_FUNCTION("experimental.processes.getProcessIdForTab", |
- EXPERIMENTAL_PROCESSES_GETPROCESSIDFORTAB) |
+ DECLARE_EXTENSION_FUNCTION("processes.getProcessIdForTab", |
+ PROCESSES_GETPROCESSIDFORTAB) |
}; |
// Extension function that allows terminating Chrome subprocesses, by supplying |
@@ -182,8 +182,8 @@ class TerminateFunction : public AsyncExtensionFunction, |
// Storage for the process ID parameter. |
int process_id_; |
- DECLARE_EXTENSION_FUNCTION("experimental.processes.terminate", |
- EXPERIMENTAL_PROCESSES_TERMINATE) |
+ DECLARE_EXTENSION_FUNCTION("processes.terminate", |
+ PROCESSES_TERMINATE) |
}; |
// Extension function which returns a set of Process objects, containing the |
@@ -212,8 +212,8 @@ class GetProcessInfoFunction : public AsyncExtensionFunction, |
bool memory_; |
#endif |
- DECLARE_EXTENSION_FUNCTION("experimental.processes.getProcessInfo", |
- EXPERIMENTAL_PROCESSES_GETPROCESSINFO) |
+ DECLARE_EXTENSION_FUNCTION("processes.getProcessInfo", |
+ PROCESSES_GETPROCESSINFO) |
}; |
} // namespace extensions |