diff options
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_sync_channel_unittest.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ipc/ipc_sync_channel_unittest.cc b/ipc/ipc_sync_channel_unittest.cc index 4728997..e7903f4 100644 --- a/ipc/ipc_sync_channel_unittest.cc +++ b/ipc/ipc_sync_channel_unittest.cc @@ -1136,9 +1136,8 @@ class ServerSendAfterClose : public Worker { bool SendDummy() { ListenerThread()->message_loop()->PostTask( - FROM_HERE, base::IgnoreReturn<bool>( - base::Bind(&ServerSendAfterClose::Send, this, - new SyncChannelTestMsg_NoArgs))); + FROM_HERE, base::Bind(base::IgnoreResult(&ServerSendAfterClose::Send), + this, new SyncChannelTestMsg_NoArgs)); return true; } |