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

Unified Diff: chrome/renderer/extensions/page_actions_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
Index: chrome/renderer/extensions/page_actions_custom_bindings.cc
diff --git a/chrome/renderer/extensions/page_actions_custom_bindings.cc b/chrome/renderer/extensions/page_actions_custom_bindings.cc
index 0d9d61ac46a1ed734cbeab3763d3c8c55fd30581..b6e86ee62e889020c216417839693f9c35de73a7 100644
--- a/chrome/renderer/extensions/page_actions_custom_bindings.cc
+++ b/chrome/renderer/extensions/page_actions_custom_bindings.cc
@@ -14,15 +14,10 @@
namespace extensions {
PageActionsCustomBindings::PageActionsCustomBindings(
- int dependency_count,
- const char** dependencies,
ExtensionDispatcher* extension_dispatcher)
- : ChromeV8Extension(
- "extensions/page_actions_custom_bindings.js",
- IDR_PAGE_ACTIONS_CUSTOM_BINDINGS_JS,
- dependency_count,
- dependencies,
- extension_dispatcher) {}
+ : ChromeV8Extension(extension_dispatcher) {
+ RouteStaticFunction("GetCurrentPageActions", &GetCurrentPageActions);
+}
// static
v8::Handle<v8::Value> PageActionsCustomBindings::GetCurrentPageActions(
@@ -45,15 +40,4 @@ v8::Handle<v8::Value> PageActionsCustomBindings::GetCurrentPageActions(
return page_action_vector;
}
-
-v8::Handle<v8::FunctionTemplate> PageActionsCustomBindings::GetNativeFunction(
- v8::Handle<v8::String> name) {
- if (name->Equals(v8::String::New("GetCurrentPageActions"))) {
- return v8::FunctionTemplate::New(GetCurrentPageActions,
- v8::External::New(this));
- }
-
- return ChromeV8Extension::GetNativeFunction(name);
-}
-
} // extensions
« no previous file with comments | « chrome/renderer/extensions/page_actions_custom_bindings.h ('k') | chrome/renderer/extensions/page_capture_custom_bindings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698