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

Unified Diff: chrome_frame/test/mock_ie_event_sink_actions.h

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/crash_reporting/nt_loader_unittest.cc ('k') | chrome_frame/urlmon_url_request.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/mock_ie_event_sink_actions.h
diff --git a/chrome_frame/test/mock_ie_event_sink_actions.h b/chrome_frame/test/mock_ie_event_sink_actions.h
index fc57b5314372879099a76c899efdf03cbeb92e9b..81518d7e6d9dbabab92eb44d42b3448ebbbdccf1 100644
--- a/chrome_frame/test/mock_ie_event_sink_actions.h
+++ b/chrome_frame/test/mock_ie_event_sink_actions.h
@@ -50,8 +50,8 @@ ACTION_P(CloseBrowserMock, mock) {
ACTION_P3(DelayCloseBrowserMock, loop, delay, mock) {
loop->PostDelayedTask(
FROM_HERE,
- base::IgnoreReturn<HRESULT>(
- base::Bind(&IEEventSink::CloseWebBrowser, mock->event_sink())),
+ base::Bind(base::IgnoreResult(&IEEventSink::CloseWebBrowser),
+ mock->event_sink()),
delay);
}
« no previous file with comments | « chrome_frame/crash_reporting/nt_loader_unittest.cc ('k') | chrome_frame/urlmon_url_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698