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

Unified Diff: extensions/renderer/api_binding.cc

Issue 2617423003: [Extensions Bindings] Add support for updateArgumentsPostValidate (Closed)
Patch Set: . Created 3 years, 11 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 | « no previous file | extensions/renderer/api_binding_hooks.h » ('j') | extensions/renderer/api_binding_hooks.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/api_binding.cc
diff --git a/extensions/renderer/api_binding.cc b/extensions/renderer/api_binding.cc
index 91a5d84ffc3eb04a466bf513e1244251e9230360..027ce54c1c77aa3b95f60e92013f5a56881f8fb7 100644
--- a/extensions/renderer/api_binding.cc
+++ b/extensions/renderer/api_binding.cc
@@ -261,8 +261,8 @@ void APIBinding::HandleCall(const std::string& name,
{
v8::TryCatch try_catch(isolate);
APIBindingHooks::RequestResult hooks_result =
- binding_hooks_->HandleRequest(api_name_, name, context,
- signature, &argument_list, *type_refs_);
+ binding_hooks_->RunHooks(api_name_, name, context,
+ signature, &argument_list, *type_refs_);
switch (hooks_result.code) {
case APIBindingHooks::RequestResult::INVALID_INVOCATION:
« no previous file with comments | « no previous file | extensions/renderer/api_binding_hooks.h » ('j') | extensions/renderer/api_binding_hooks.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698