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

Unified Diff: content/renderer/media/video_capture_impl.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_message_filter.cc ('k') | ipc/ipc_sync_channel_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/video_capture_impl.cc
diff --git a/content/renderer/media/video_capture_impl.cc b/content/renderer/media/video_capture_impl.cc
index b7a69702a04653a182dbe1cd859adaefd24ab4b5..06f3150451681c2142b82fd57fe87fdeb4a15bdb 100644
--- a/content/renderer/media/video_capture_impl.cc
+++ b/content/renderer/media/video_capture_impl.cc
@@ -431,8 +431,8 @@ void VideoCaptureImpl::Send(IPC::Message* message) {
ChildProcess::current()->io_message_loop_proxy();
io_message_loop_proxy->PostTask(FROM_HERE,
- base::IgnoreReturn<bool>(base::Bind(&VideoCaptureMessageFilter::Send,
- message_filter_.get(), message)));
+ base::Bind(base::IgnoreResult(&VideoCaptureMessageFilter::Send),
+ message_filter_.get(), message));
}
bool VideoCaptureImpl::ClientHasDIB() {
« no previous file with comments | « content/renderer/media/audio_message_filter.cc ('k') | ipc/ipc_sync_channel_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698