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

Unified Diff: content/browser/utility_process_host.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
Index: content/browser/utility_process_host.cc
diff --git a/content/browser/utility_process_host.cc b/content/browser/utility_process_host.cc
index f472d92557d966773e5c136ff6a7f2baaf9919fa..097cb930b30c9d7ed912a4310651cacdb6fe3b1a 100644
--- a/content/browser/utility_process_host.cc
+++ b/content/browser/utility_process_host.cc
@@ -151,8 +151,8 @@ bool UtilityProcessHost::StartProcess() {
bool UtilityProcessHost::OnMessageReceived(const IPC::Message& message) {
BrowserThread::PostTask(
client_thread_id_, FROM_HERE,
- base::IgnoreReturn<bool>(
- base::Bind(&Client::OnMessageReceived, client_.get(), message)));
+ base::Bind(base::IgnoreResult(&Client::OnMessageReceived),
+ client_.get(), message));
return true;
}
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_win.cc ('k') | content/public/browser/browser_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698