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

Unified Diff: extensions/common/extension_messages.h

Issue 2331263002: [Extensions] Finish making port creation asynchronous (Closed)
Patch Set: lazyboy's Created 4 years, 3 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: extensions/common/extension_messages.h
diff --git a/extensions/common/extension_messages.h b/extensions/common/extension_messages.h
index dc830be4a4d6dab54d4dc560daae62a6953a29dd..f9e9bcb31674e66f6c73de539f2194795d7689aa 100644
--- a/extensions/common/extension_messages.h
+++ b/extensions/common/extension_messages.h
@@ -694,19 +694,19 @@ IPC_MESSAGE_ROUTED2(ExtensionMsg_AssignPortId,
int /*port_id */,
int /* request_id */)
-IPC_SYNC_MESSAGE_CONTROL2_1(ExtensionHostMsg_OpenChannelToNativeApp,
- int /* frame_routing_id */,
- std::string /* native_app_name */,
- int /* port_id */)
+IPC_MESSAGE_CONTROL3(ExtensionHostMsg_OpenChannelToNativeApp,
+ int /* frame_routing_id */,
+ std::string /* native_app_name */,
+ int /* request_id */)
// Get a port handle to the given tab. The handle can be used for sending
// messages to the extension.
-IPC_SYNC_MESSAGE_CONTROL4_1(ExtensionHostMsg_OpenChannelToTab,
- int /* frame_routing_id */,
- ExtensionMsg_TabTargetConnectionInfo,
- std::string /* extension_id */,
- std::string /* channel_name */,
- int /* port_id */)
+IPC_MESSAGE_CONTROL5(ExtensionHostMsg_OpenChannelToTab,
+ int /* frame_routing_id */,
+ ExtensionMsg_TabTargetConnectionInfo,
+ std::string /* extension_id */,
+ std::string /* channel_name */,
+ int /* request_id */)
// Sent in response to ExtensionMsg_DispatchOnConnect when the port is accepted.
// The handle is the value returned by ExtensionHostMsg_OpenChannelTo*.
« no previous file with comments | « chrome/browser/renderer_host/chrome_extension_message_filter.cc ('k') | extensions/renderer/extension_frame_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698