| Index: chrome/browser/extensions/extension_context_menu_api.h
|
| diff --git a/chrome/browser/extensions/extension_context_menu_api.h b/chrome/browser/extensions/extension_context_menu_api.h
|
| index 3362aaec67ecc127ca3ade3cab5c97d10b26b062..bfd0d12e5c13123ded660ecd5be6a64b942063c6 100644
|
| --- a/chrome/browser/extensions/extension_context_menu_api.h
|
| +++ b/chrome/browser/extensions/extension_context_menu_api.h
|
| @@ -46,25 +46,25 @@ class ExtensionContextMenuFunction : public SyncExtensionFunction {
|
| class CreateContextMenuFunction : public ExtensionContextMenuFunction {
|
| ~CreateContextMenuFunction() {}
|
| virtual bool RunImpl();
|
| - DECLARE_EXTENSION_FUNCTION_NAME("experimental.contextMenus.create")
|
| + DECLARE_EXTENSION_FUNCTION_NAME("contextMenus.create")
|
| };
|
|
|
| class UpdateContextMenuFunction : public ExtensionContextMenuFunction {
|
| ~UpdateContextMenuFunction() {}
|
| virtual bool RunImpl();
|
| - DECLARE_EXTENSION_FUNCTION_NAME("experimental.contextMenus.update")
|
| + DECLARE_EXTENSION_FUNCTION_NAME("contextMenus.update")
|
| };
|
|
|
| class RemoveContextMenuFunction : public ExtensionContextMenuFunction {
|
| ~RemoveContextMenuFunction() {}
|
| virtual bool RunImpl();
|
| - DECLARE_EXTENSION_FUNCTION_NAME("experimental.contextMenus.remove")
|
| + DECLARE_EXTENSION_FUNCTION_NAME("contextMenus.remove")
|
| };
|
|
|
| class RemoveAllContextMenusFunction : public ExtensionContextMenuFunction {
|
| ~RemoveAllContextMenusFunction() {}
|
| virtual bool RunImpl();
|
| - DECLARE_EXTENSION_FUNCTION_NAME("experimental.contextMenus.removeAll")
|
| + DECLARE_EXTENSION_FUNCTION_NAME("contextMenus.removeAll")
|
| };
|
|
|
| #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_CONTEXT_MENU_API_H__
|
|
|