| Index: chrome/browser/extensions/api/context_menus/context_menus_api.h
|
| diff --git a/chrome/browser/extensions/api/context_menu/context_menu_api.h b/chrome/browser/extensions/api/context_menus/context_menus_api.h
|
| similarity index 56%
|
| rename from chrome/browser/extensions/api/context_menu/context_menu_api.h
|
| rename to chrome/browser/extensions/api/context_menus/context_menus_api.h
|
| index 5f15c927c1941a824b0f65898b8fbd3f05362b48..d6b1217ac8d08e35495542176cb32730292969b0 100644
|
| --- a/chrome/browser/extensions/api/context_menu/context_menu_api.h
|
| +++ b/chrome/browser/extensions/api/context_menus/context_menus_api.h
|
| @@ -2,52 +2,52 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CHROME_BROWSER_EXTENSIONS_API_CONTEXT_MENU_CONTEXT_MENU_API_H__
|
| -#define CHROME_BROWSER_EXTENSIONS_API_CONTEXT_MENU_CONTEXT_MENU_API_H__
|
| +#ifndef CHROME_BROWSER_EXTENSIONS_API_CONTEXT_MENUS_CONTEXT_MENUS_API_H_
|
| +#define CHROME_BROWSER_EXTENSIONS_API_CONTEXT_MENUS_CONTEXT_MENUS_API_H_
|
|
|
| #include "chrome/browser/extensions/extension_function.h"
|
|
|
| namespace extensions {
|
|
|
| -class CreateContextMenuFunction : public SyncExtensionFunction {
|
| +class ContextMenusCreateFunction : public SyncExtensionFunction {
|
| public:
|
| DECLARE_EXTENSION_FUNCTION_NAME("contextMenus.create")
|
|
|
| protected:
|
| - virtual ~CreateContextMenuFunction() {}
|
| + virtual ~ContextMenusCreateFunction() {}
|
|
|
| // ExtensionFunction:
|
| virtual bool RunImpl() OVERRIDE;
|
| };
|
|
|
| -class UpdateContextMenuFunction : public SyncExtensionFunction {
|
| +class ContextMenusUpdateFunction : public SyncExtensionFunction {
|
| public:
|
| DECLARE_EXTENSION_FUNCTION_NAME("contextMenus.update")
|
|
|
| protected:
|
| - virtual ~UpdateContextMenuFunction() {}
|
| + virtual ~ContextMenusUpdateFunction() {}
|
|
|
| // ExtensionFunction:
|
| virtual bool RunImpl() OVERRIDE;
|
| };
|
|
|
| -class RemoveContextMenuFunction : public SyncExtensionFunction {
|
| +class ContextMenusRemoveFunction : public SyncExtensionFunction {
|
| public:
|
| DECLARE_EXTENSION_FUNCTION_NAME("contextMenus.remove")
|
|
|
| protected:
|
| - virtual ~RemoveContextMenuFunction() {}
|
| + virtual ~ContextMenusRemoveFunction() {}
|
|
|
| // ExtensionFunction:
|
| virtual bool RunImpl() OVERRIDE;
|
| };
|
|
|
| -class RemoveAllContextMenusFunction : public SyncExtensionFunction {
|
| +class ContextMenusRemoveAllFunction : public SyncExtensionFunction {
|
| public:
|
| DECLARE_EXTENSION_FUNCTION_NAME("contextMenus.removeAll")
|
|
|
| protected:
|
| - virtual ~RemoveAllContextMenusFunction() {}
|
| + virtual ~ContextMenusRemoveAllFunction() {}
|
|
|
| // ExtensionFunction:
|
| virtual bool RunImpl() OVERRIDE;
|
| @@ -55,4 +55,4 @@ class RemoveAllContextMenusFunction : public SyncExtensionFunction {
|
|
|
| } // namespace extensions
|
|
|
| -#endif // CHROME_BROWSER_EXTENSIONS_API_CONTEXT_MENU_CONTEXT_MENU_API_H__
|
| +#endif // CHROME_BROWSER_EXTENSIONS_API_CONTEXT_MENUS_CONTEXT_MENUS_API_H_
|
|
|