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


CrOS-Libchrome-Original-Commit: dcde767184d0ab222f846123bc397738b3bcd8f7
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 @@
 
   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;
   }