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 64c8ea664e675df67a353958f492c7e5995454f4..1f37df323c1d512755d91fc62b5d5aadcf734e5b 100644 |
--- a/chrome/browser/extensions/extension_context_menu_api.h |
+++ b/chrome/browser/extensions/extension_context_menu_api.h |
@@ -64,25 +64,25 @@ class ExtensionContextMenuFunction : public SyncExtensionFunction { |
class CreateContextMenuFunction : public ExtensionContextMenuFunction { |
virtual ~CreateContextMenuFunction() {} |
- virtual bool RunImpl(); |
+ virtual bool RunImpl() OVERRIDE; |
DECLARE_EXTENSION_FUNCTION_NAME("contextMenus.create") |
}; |
class UpdateContextMenuFunction : public ExtensionContextMenuFunction { |
virtual ~UpdateContextMenuFunction() {} |
- virtual bool RunImpl(); |
+ virtual bool RunImpl() OVERRIDE; |
DECLARE_EXTENSION_FUNCTION_NAME("contextMenus.update") |
}; |
class RemoveContextMenuFunction : public ExtensionContextMenuFunction { |
virtual ~RemoveContextMenuFunction() {} |
- virtual bool RunImpl(); |
+ virtual bool RunImpl() OVERRIDE; |
DECLARE_EXTENSION_FUNCTION_NAME("contextMenus.remove") |
}; |
class RemoveAllContextMenusFunction : public ExtensionContextMenuFunction { |
virtual ~RemoveAllContextMenusFunction() {} |
- virtual bool RunImpl(); |
+ virtual bool RunImpl() OVERRIDE; |
DECLARE_EXTENSION_FUNCTION_NAME("contextMenus.removeAll") |
}; |