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

Unified Diff: chrome/renderer/extensions/tts_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/tts_custom_bindings.cc
diff --git a/chrome/renderer/extensions/tts_custom_bindings.cc b/chrome/renderer/extensions/tts_custom_bindings.cc
index dca526ac72df92800c21a0de99ee7b40b47555dd..33e1887f827f442e912e497d60f3a280181e5695 100644
--- a/chrome/renderer/extensions/tts_custom_bindings.cc
+++ b/chrome/renderer/extensions/tts_custom_bindings.cc
@@ -13,30 +13,18 @@
namespace extensions {
-TTSCustomBindings::TTSCustomBindings(
- int dependency_count,
- const char** dependencies)
- : ChromeV8Extension(
- "extensions/tts_custom_bindings.js",
- IDR_TTS_CUSTOM_BINDINGS_JS,
- dependency_count,
- dependencies,
- NULL) {}
+TTSCustomBindings::TTSCustomBindings()
+ : ChromeV8Extension(NULL) {
+ RouteStaticFunction("GetNextTTSEventId", &GetNextTTSEventId);
+}
-static v8::Handle<v8::Value> GetNextTTSEventId(const v8::Arguments& args) {
+// static
+v8::Handle<v8::Value> TTSCustomBindings::GetNextTTSEventId(
+ const v8::Arguments& args) {
// Note: this works because the TTS API only works in the
// extension process, not content scripts.
static int next_tts_event_id = 1;
return v8::Integer::New(next_tts_event_id++);
}
-v8::Handle<v8::FunctionTemplate>
-TTSCustomBindings::GetNativeFunction(
- v8::Handle<v8::String> name) {
- if (name->Equals(v8::String::New("GetNextTTSEventId")))
- return v8::FunctionTemplate::New(GetNextTTSEventId);
-
- return ChromeV8Extension::GetNativeFunction(name);
-}
-
} // extensions
« no previous file with comments | « chrome/renderer/extensions/tts_custom_bindings.h ('k') | chrome/renderer/extensions/web_request_custom_bindings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698