Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1588)

Unified Diff: chrome/renderer/extensions/tabs_custom_bindings.cc

Issue 9386001: Implement a module system for the extension bindings JS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/extensions/tabs_custom_bindings.h ('k') | chrome/renderer/extensions/tts_custom_bindings.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/extensions/tabs_custom_bindings.cc
diff --git a/chrome/renderer/extensions/tabs_custom_bindings.cc b/chrome/renderer/extensions/tabs_custom_bindings.cc
index abb2262f686733814a7a49ba15432b6db4d04c92..3d908bb0ec57376f3850d0541fffd4671f9483ce 100644
--- a/chrome/renderer/extensions/tabs_custom_bindings.cc
+++ b/chrome/renderer/extensions/tabs_custom_bindings.cc
@@ -15,14 +15,10 @@
namespace extensions {
-TabsCustomBindings::TabsCustomBindings(
- int dependency_count, const char** dependencies)
- : ChromeV8Extension(
- "extensions/tabs_custom_bindings.js",
- IDR_TABS_CUSTOM_BINDINGS_JS,
- dependency_count,
- dependencies,
- NULL) {}
+TabsCustomBindings::TabsCustomBindings()
+ : ChromeV8Extension(NULL) {
+ RouteStaticFunction("OpenChannelToTab", &OpenChannelToTab);
+}
// static
v8::Handle<v8::Value> TabsCustomBindings::OpenChannelToTab(
@@ -47,12 +43,4 @@ v8::Handle<v8::Value> TabsCustomBindings::OpenChannelToTab(
return v8::Undefined();
}
-v8::Handle<v8::FunctionTemplate> TabsCustomBindings::GetNativeFunction(
- v8::Handle<v8::String> name) {
- if (name->Equals(v8::String::New("OpenChannelToTab")))
- return v8::FunctionTemplate::New(OpenChannelToTab);
-
- return ChromeV8Extension::GetNativeFunction(name);
-}
-
} // extensions
« no previous file with comments | « chrome/renderer/extensions/tabs_custom_bindings.h ('k') | chrome/renderer/extensions/tts_custom_bindings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698