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

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

Powered by Google App Engine
This is Rietveld 408576698