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

Unified Diff: extensions/renderer/extension_frame_helper.cc

Issue 2495213007: [Extensions] Use a separate IPC message for extension events (Closed)
Patch Set: lazyboys Created 4 years, 1 month 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/extension_frame_helper.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/extension_frame_helper.cc
diff --git a/extensions/renderer/extension_frame_helper.cc b/extensions/renderer/extension_frame_helper.cc
index 25837983d3102695a07d6bbbf623fe764c5cb022..00f84d5ea925f021b1cc0d6e256e6441c7fbfc8b 100644
--- a/extensions/renderer/extension_frame_helper.cc
+++ b/extensions/renderer/extension_frame_helper.cc
@@ -379,11 +379,9 @@ void ExtensionFrameHelper::OnExtensionMessageInvoke(
const std::string& extension_id,
const std::string& module_name,
const std::string& function_name,
- const base::ListValue& args,
- bool user_gesture) {
- extension_dispatcher_->InvokeModuleSystemMethod(render_frame(), extension_id,
- module_name, function_name,
- args, user_gesture);
+ const base::ListValue& args) {
+ extension_dispatcher_->InvokeModuleSystemMethod(
+ render_frame(), extension_id, module_name, function_name, args);
}
void ExtensionFrameHelper::OnAssignPortId(int port_id, int request_id) {
« no previous file with comments | « extensions/renderer/extension_frame_helper.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698