diff options
author | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-06 02:37:17 +0000 |
---|---|---|
committer | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-06 02:37:17 +0000 |
commit | dcde767184d0ab222f846123bc397738b3bcd8f7 (patch) | |
tree | 0f9a8297a8ef586214a09e2c53e9c300a31f914a /ipc | |
parent | 651cea61d7994567ddd4db73012d6c9f737efee4 (diff) | |
download | chromium_src-dcde767184d0ab222f846123bc397738b3bcd8f7.zip chromium_src-dcde767184d0ab222f846123bc397738b3bcd8f7.tar.gz chromium_src-dcde767184d0ab222f846123bc397738b3bcd8f7.tar.bz2 |
Change over IgnoreReturn to IgnoreResult. remove IgnoreReturn.
BUG=98919
TEST=existing
Review URL: http://codereview.chromium.org/9111032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116631 0039d316-1c4b-4281-b951-d872f2087c98
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; } |