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

Unified Diff: chrome/test/base/view_event_test_base.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/browser/ui/browser_init.cc ('k') | chrome_frame/cfproxy_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/view_event_test_base.cc
diff --git a/chrome/test/base/view_event_test_base.cc b/chrome/test/base/view_event_test_base.cc
index 490afdf9e0716ed7f472fcc4097ff16198bbd05d..7f695f5a99ec3716524154fbb0c1fcbf1de12b8f 100644
--- a/chrome/test/base/view_event_test_base.cc
+++ b/chrome/test/base/view_event_test_base.cc
@@ -170,7 +170,7 @@ void ViewEventTestBase::ScheduleMouseMoveInBackground(int x, int y) {
}
dnd_thread_->message_loop()->PostDelayedTask(
FROM_HERE,
- base::IgnoreReturn<bool>(base::Bind(&ui_controls::SendMouseMove, x, y)),
+ base::Bind(base::IgnoreResult(&ui_controls::SendMouseMove), x, y),
kMouseMoveDelayMS);
}
« no previous file with comments | « chrome/browser/ui/browser_init.cc ('k') | chrome_frame/cfproxy_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698