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

Unified Diff: extensions/renderer/module_system.cc

Issue 2436893002: [Extensions] Convert some callers of ModuleSystem::CallModuleMethod (Closed)
Patch Set: Created 4 years, 2 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 | « extensions/renderer/module_system.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/module_system.cc
diff --git a/extensions/renderer/module_system.cc b/extensions/renderer/module_system.cc
index 2fe422a4b871e321c9e12d578ec3c924cb5798f0..e583efcaa730360068ee32c6bef75aae1d61bfd0 100644
--- a/extensions/renderer/module_system.cc
+++ b/extensions/renderer/module_system.cc
@@ -294,13 +294,6 @@ v8::Local<v8::Value> ModuleSystem::CallModuleMethod(
v8::Local<v8::Value> ModuleSystem::CallModuleMethod(
const std::string& module_name,
const std::string& method_name,
- std::vector<v8::Local<v8::Value>>* args) {
- return CallModuleMethod(module_name, method_name, args->size(), args->data());
-}
-
-v8::Local<v8::Value> ModuleSystem::CallModuleMethod(
- const std::string& module_name,
- const std::string& method_name,
int argc,
v8::Local<v8::Value> argv[]) {
TRACE_EVENT2("v8",
« no previous file with comments | « extensions/renderer/module_system.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698