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

Side by Side Diff: chrome/renderer/extensions/web_request_custom_bindings.cc

Issue 9657026: Revert 125801 - Implement a module system for the extension bindings JS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/renderer/extensions/web_request_custom_bindings.h" 5 #include "chrome/renderer/extensions/web_request_custom_bindings.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/string_number_conversions.h" 9 #include "base/string_number_conversions.h"
10 #include "grit/renderer_resources.h" 10 #include "grit/renderer_resources.h"
11 #include "v8/include/v8.h" 11 #include "v8/include/v8.h"
12 12
13 namespace extensions { 13 namespace extensions {
14 14
15 WebRequestCustomBindings::WebRequestCustomBindings() 15 WebRequestCustomBindings::WebRequestCustomBindings(
16 : ChromeV8Extension(NULL) { 16 int dependency_count,
17 RouteStaticFunction("GetUniqueSubEventName", &GetUniqueSubEventName); 17 const char** dependencies)
18 } 18 : ChromeV8Extension(
19 "extensions/web_request_custom_bindings.js",
20 IDR_WEB_REQUEST_CUSTOM_BINDINGS_JS,
21 dependency_count,
22 dependencies,
23 NULL) {}
19 24
20 // Attach an event name to an object. 25 // Attach an event name to an object.
21 // static 26 static v8::Handle<v8::Value> GetUniqueSubEventName(const v8::Arguments& args) {
22 v8::Handle<v8::Value> WebRequestCustomBindings::GetUniqueSubEventName(
23 const v8::Arguments& args) {
24 static int next_event_id = 0; 27 static int next_event_id = 0;
25 DCHECK(args.Length() == 1); 28 DCHECK(args.Length() == 1);
26 DCHECK(args[0]->IsString()); 29 DCHECK(args[0]->IsString());
27 std::string event_name(*v8::String::AsciiValue(args[0])); 30 std::string event_name(*v8::String::AsciiValue(args[0]));
28 std::string unique_event_name = 31 std::string unique_event_name =
29 event_name + "/" + base::IntToString(++next_event_id); 32 event_name + "/" + base::IntToString(++next_event_id);
30 return v8::String::New(unique_event_name.c_str()); 33 return v8::String::New(unique_event_name.c_str());
31 } 34 }
32 35
36 v8::Handle<v8::FunctionTemplate> WebRequestCustomBindings::GetNativeFunction(
37 v8::Handle<v8::String> name) {
38 if (name->Equals(v8::String::New("GetUniqueSubEventName")))
39 return v8::FunctionTemplate::New(GetUniqueSubEventName);
40
41 return ChromeV8Extension::GetNativeFunction(name);
42 }
43
33 } // extensions 44 } // extensions
34 45
OLDNEW
« no previous file with comments | « chrome/renderer/extensions/web_request_custom_bindings.h ('k') | chrome/renderer/extensions/webstore_bindings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698