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

Unified Diff: content/renderer/media/audio_message_filter.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/audio_input_message_filter.cc ('k') | content/renderer/media/video_capture_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/audio_message_filter.cc
diff --git a/content/renderer/media/audio_message_filter.cc b/content/renderer/media/audio_message_filter.cc
index 628ea8daf180e28409256939ea0c430434e8bf67..93e1529d80a9fb990df3d6181b44a8e900fe148f 100644
--- a/content/renderer/media/audio_message_filter.cc
+++ b/content/renderer/media/audio_message_filter.cc
@@ -31,8 +31,8 @@ bool AudioMessageFilter::Send(IPC::Message* message) {
// safe.
ChildProcess::current()->io_message_loop()->PostTask(
FROM_HERE,
- base::IgnoreReturn<bool>(base::Bind(&AudioMessageFilter::Send,
- this, message)));
+ base::Bind(base::IgnoreResult(&AudioMessageFilter::Send), this,
+ message));
return true;
}
« no previous file with comments | « content/renderer/media/audio_input_message_filter.cc ('k') | content/renderer/media/video_capture_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698