| 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*.
|
|
|