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

Unified Diff: chrome_frame/chrome_frame_automation.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 | « chrome_frame/cfproxy_test.cc ('k') | chrome_frame/crash_reporting/nt_loader_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/chrome_frame_automation.cc
diff --git a/chrome_frame/chrome_frame_automation.cc b/chrome_frame/chrome_frame_automation.cc
index 5ca6dd2d03f3a18ceb95f86b38458e7f918aafb9..44aac5a3ff1ebedb659d3f19d4c49e0eabbf13d9 100644
--- a/chrome_frame/chrome_frame_automation.cc
+++ b/chrome_frame/chrome_frame_automation.cc
@@ -989,9 +989,11 @@ bool ChromeFrameAutomationClient::ProcessUrlRequestMessage(TabProxy* tab,
}
PostTask(
- FROM_HERE, base::IgnoreReturn<bool>(base::Bind(
- &ChromeFrameAutomationClient::ProcessUrlRequestMessage,
- base::Unretained(this), tab, msg, true)));
+ FROM_HERE,
+ base::Bind(
+ base::IgnoreResult(
+ &ChromeFrameAutomationClient::ProcessUrlRequestMessage),
+ base::Unretained(this), tab, msg, true));
return true;
}
« no previous file with comments | « chrome_frame/cfproxy_test.cc ('k') | chrome_frame/crash_reporting/nt_loader_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698