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

Unified Diff: content/browser/renderer_host/pepper_message_filter.cc

Issue 8571015: Fix build break from r110164 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/pepper_message_filter.cc
diff --git a/content/browser/renderer_host/pepper_message_filter.cc b/content/browser/renderer_host/pepper_message_filter.cc
index f09f5c4a1e6e579ccb34b2fe6f3772d2e877e9c5..c7f2f158e9fc13eb51e1791067556adb9b55d2b5 100644
--- a/content/browser/renderer_host/pepper_message_filter.cc
+++ b/content/browser/renderer_host/pepper_message_filter.cc
@@ -11,6 +11,7 @@
#include "base/basictypes.h"
#include "base/bind.h"
+#include "base/bind_helpers.h"
#include "base/compiler_specific.h"
#include "base/logging.h"
#include "base/memory/linked_ptr.h"
@@ -1147,12 +1148,15 @@ void PepperMessageFilter::ConnectTcpOnWorkerThread(int routing_id,
}
}
- BrowserThread::PostTask(BrowserThread::IO, FROM_HERE,
- base::Bind(
- &PepperMessageFilter::Send, this,
- new PepperMsg_ConnectTcpACK(
- routing_id, request_id,
- socket_for_transit, local_addr, remote_addr)));
+ BrowserThread::PostTask(
+ BrowserThread::IO,
+ FROM_HERE,
+ base::IgnoreReturn<bool>(
+ base::Bind(
+ &PepperMessageFilter::Send, this,
+ new PepperMsg_ConnectTcpACK(
+ routing_id, request_id,
+ socket_for_transit, local_addr, remote_addr))));
}
// TODO(vluu): Eliminate duplication between this and
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698