summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-06 02:37:17 +0000
committerajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-06 02:37:17 +0000
commitdcde767184d0ab222f846123bc397738b3bcd8f7 (patch)
tree0f9a8297a8ef586214a09e2c53e9c300a31f914a /ipc
parent651cea61d7994567ddd4db73012d6c9f737efee4 (diff)
downloadchromium_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.cc5
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;
}