Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(531)

Unified Diff: ipc/ipc_sync_channel_unittest.cc

Issue 9111032: Change over IgnoreReturn to IgnoreResult. remove IgnoreReturn. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix it for realz Created 8 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/media/video_capture_impl.cc ('k') | webkit/tools/test_shell/simple_appcache_system.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_sync_channel_unittest.cc
diff --git a/ipc/ipc_sync_channel_unittest.cc b/ipc/ipc_sync_channel_unittest.cc
index 47289974f184bb4e0c67dbfa646906e30839b622..e7903f48abdf27ab66e089f1c552c7ae0cca5989 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;
}
« no previous file with comments | « content/renderer/media/video_capture_impl.cc ('k') | webkit/tools/test_shell/simple_appcache_system.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698