diff options
author | markusheintz@chromium.org <markusheintz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-06 12:35:54 +0000 |
---|---|---|
committer | markusheintz@chromium.org <markusheintz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-06 12:35:54 +0000 |
commit | f26bc0362440a9757274e6be562a89abae1d6cf1 (patch) | |
tree | 2efe94f7ac5c562bbc7afaadc475b35acf661b9b /chrome/renderer/extensions/tabs_custom_bindings.h | |
parent | a6fc72d56bf2d2a860b7d0eb7886f3685838ce0e (diff) | |
download | chromium_src-f26bc0362440a9757274e6be562a89abae1d6cf1.zip chromium_src-f26bc0362440a9757274e6be562a89abae1d6cf1.tar.gz chromium_src-f26bc0362440a9757274e6be562a89abae1d6cf1.tar.bz2 |
Revert 125132 - Implement a module system for the extension bindings JS.
BUG=104100
TEST=existing browser tests
Review URL: http://codereview.chromium.org/9386001
TBR=koz@chromium.org
Review URL: https://chromiumcodereview.appspot.com/9592007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125149 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/extensions/tabs_custom_bindings.h')
-rw-r--r-- | chrome/renderer/extensions/tabs_custom_bindings.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/renderer/extensions/tabs_custom_bindings.h b/chrome/renderer/extensions/tabs_custom_bindings.h index ec06979..0700a43 100644 --- a/chrome/renderer/extensions/tabs_custom_bindings.h +++ b/chrome/renderer/extensions/tabs_custom_bindings.h @@ -13,7 +13,10 @@ namespace extensions { // Implements custom bindings for the tabs API. class TabsCustomBindings : public ChromeV8Extension { public: - TabsCustomBindings(); + TabsCustomBindings(int dependency_count, const char** dependencies); + + virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction( + v8::Handle<v8::String> name) OVERRIDE; private: // Creates a new messaging channel to the tab with the given ID. |