summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2016-01-07 10:05:58 -0500
committerNico Weber <thakis@chromium.org>2016-01-07 15:07:30 +0000
commit60aa7e6efe51801c50abf7cc83effb9dc0b05794 (patch)
treebbbc3e2a3260afe4bab5cc283649f83523363909 /extensions
parent2f797c780f8638733e71c1a3da185000939cfbe7 (diff)
downloadchromium_src-60aa7e6efe51801c50abf7cc83effb9dc0b05794.zip
chromium_src-60aa7e6efe51801c50abf7cc83effb9dc0b05794.tar.gz
chromium_src-60aa7e6efe51801c50abf7cc83effb9dc0b05794.tar.bz2
Unbreak ipc_fuzzer build after https://codereview.chromium.org/1413543005/
Should fix: ..\..\extensions/common/extension_messages.h(662,40) : error: expected expression int /* port_id */); ^ ..\..\tools\ipc_fuzzer\message_tools\message_list.cc(39,15) : error: invalid application of 'sizeof' to an incomplete type 'msginfo []' static_assert(MSGTABLE_SIZE, "check your headers for an extra semicolon"); ^~~~~~~~~~~~~ BUG=432875 TBR=creis Review URL: https://codereview.chromium.org/1563993003 . Cr-Commit-Position: refs/heads/master@{#368074}
Diffstat (limited to 'extensions')
-rw-r--r--extensions/common/extension_messages.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/common/extension_messages.h b/extensions/common/extension_messages.h
index 6ff3cf1..cadb33f 100644
--- a/extensions/common/extension_messages.h
+++ b/extensions/common/extension_messages.h
@@ -659,14 +659,14 @@ IPC_SYNC_MESSAGE_CONTROL4_1(ExtensionHostMsg_OpenChannelToTab,
// The handle is the value returned by ExtensionHostMsg_OpenChannelTo*.
IPC_MESSAGE_CONTROL2(ExtensionHostMsg_OpenMessagePort,
int /* frame_routing_id */,
- int /* port_id */);
+ int /* port_id */)
// Sent in response to ExtensionMsg_DispatchOnConnect and whenever the port is
// closed. The handle is the value returned by ExtensionHostMsg_OpenChannelTo*.
IPC_MESSAGE_CONTROL3(ExtensionHostMsg_CloseMessagePort,
int /* frame_routing_id */,
int /* port_id */,
- bool /* force_close */);
+ bool /* force_close */)
// Send a message to an extension process. The handle is the value returned
// by ExtensionHostMsg_OpenChannelTo*.