diff options
author | koz@chromium.org <koz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-13 02:09:41 +0000 |
---|---|---|
committer | koz@chromium.org <koz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-13 02:09:41 +0000 |
commit | 9fb990b32d4de5697fa848e03a6bf4d11fcd0417 (patch) | |
tree | c6dd811b2fd92bf95afe4107e3f78ae86e255319 /chrome/renderer/extensions/context_menus_custom_bindings.h | |
parent | af885dd7caf0455a05f15aac48fa221191266706 (diff) | |
download | chromium_src-9fb990b32d4de5697fa848e03a6bf4d11fcd0417.zip chromium_src-9fb990b32d4de5697fa848e03a6bf4d11fcd0417.tar.gz chromium_src-9fb990b32d4de5697fa848e03a6bf4d11fcd0417.tar.bz2 |
Implement a module system for the extension bindings JS.
BUG=104100
TEST=existing browser tests
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=125132
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=125801
Review URL: http://codereview.chromium.org/9386001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126306 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/extensions/context_menus_custom_bindings.h')
-rw-r--r-- | chrome/renderer/extensions/context_menus_custom_bindings.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/chrome/renderer/extensions/context_menus_custom_bindings.h b/chrome/renderer/extensions/context_menus_custom_bindings.h index 1b31e50..18d3b38 100644 --- a/chrome/renderer/extensions/context_menus_custom_bindings.h +++ b/chrome/renderer/extensions/context_menus_custom_bindings.h @@ -13,10 +13,7 @@ namespace extensions { // Implements custom bindings for the contextMenus API. class ContextMenusCustomBindings : public ChromeV8Extension { public: - ContextMenusCustomBindings(int dependency_count, const char** dependencies); - - virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction( - v8::Handle<v8::String> name) OVERRIDE; + ContextMenusCustomBindings(); }; } // extensions |