Chromium Code Reviews| Index: ipc/ipc_sync_channel.cc |
| =================================================================== |
| --- ipc/ipc_sync_channel.cc (revision 83739) |
| +++ ipc/ipc_sync_channel.cc (working copy) |
| @@ -400,6 +400,9 @@ |
| } |
| bool SyncChannel::SendWithTimeout(Message* message, int timeout_ms) { |
| + if (outgoing_message_filter()) |
|
jam
2011/05/02 20:06:11
this should be done in ChannelProxy::Send
|
| + message = outgoing_message_filter()->Rewrite(message); |
| + |
| if (!message->is_sync()) { |
| ChannelProxy::Send(message); |
| return true; |