diff options
author | steveblock@chromium.org <steveblock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-23 10:18:10 +0000 |
---|---|---|
committer | steveblock@chromium.org <steveblock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-23 10:18:10 +0000 |
commit | 7f994184c31d7172c0a0454e14dddf309eda3604 (patch) | |
tree | a0c59f74112d44c195e824d98e184fea0696e568 /ipc/ipc_message_macros.h | |
parent | 23d9a59bf45f9d10d2da367a36cf9d0a2ecddec8 (diff) | |
download | chromium_src-7f994184c31d7172c0a0454e14dddf309eda3604.zip chromium_src-7f994184c31d7172c0a0454e14dddf309eda3604.tar.gz chromium_src-7f994184c31d7172c0a0454e14dddf309eda3604.tar.bz2 |
Clean up a comment in ipc_message_macros.h
BUG=
TEST=
Review URL: http://codereview.chromium.org/7709004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97844 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_message_macros.h')
-rw-r--r-- | ipc/ipc_message_macros.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ipc/ipc_message_macros.h b/ipc/ipc_message_macros.h index 34b5103..f0b847d 100644 --- a/ipc/ipc_message_macros.h +++ b/ipc/ipc_message_macros.h @@ -150,10 +150,10 @@ // // Once the types have been declared / registered, message definitions follow. // "Sync" messages are just synchronous calls, the Send() call doesn't return -// until a reply comes back. Input parameters are first (const TYPE&), and -// To declare a sync message, use the IPC_SYNC_ macros. The numbers at the -// end show how many input/output parameters there are (i.e. 1_2 is 1 in, 2 -// out). The caller does a Send([route id, ], in1, &out1, &out2). +// until a reply comes back. To declare a sync message, use the IPC_SYNC_ +// macros. The numbers at the end show how many input/output parameters there +// are (i.e. 1_2 is 1 in, 2 out). Input parameters are first, followed by +// output parameters. The caller uses Send([route id, ], in1, &out1, &out2). // The receiver's handler function will be // void OnSyncMessageName(const type1& in1, type2* out1, type3* out2) // |