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

Unified Diff: ui/app_list/cocoa/test/apps_grid_controller_test_helper.mm

Issue 14061025: ui: Use base::MessageLoop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | « ui/app_list/cocoa/test/apps_grid_controller_test_helper.h ('k') | ui/app_list/pagination_model_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/cocoa/test/apps_grid_controller_test_helper.mm
diff --git a/ui/app_list/cocoa/test/apps_grid_controller_test_helper.mm b/ui/app_list/cocoa/test/apps_grid_controller_test_helper.mm
index c76a926668cf90ee74c8b32a691c7be9a8bd97ca..e5763ba7f308b91c65bdd1faeb974d01de2582b8 100644
--- a/ui/app_list/cocoa/test/apps_grid_controller_test_helper.mm
+++ b/ui/app_list/cocoa/test/apps_grid_controller_test_helper.mm
@@ -100,13 +100,13 @@ size_t AppsGridControllerTestHelper::GetPageIndexForItem(int item_id) const {
}
void AppsGridControllerTestHelper::DelayForCollectionView() {
- message_loop_.PostDelayedTask(FROM_HERE, MessageLoop::QuitClosure(),
+ message_loop_.PostDelayedTask(FROM_HERE, base::MessageLoop::QuitClosure(),
base::TimeDelta::FromMilliseconds(100));
message_loop_.Run();
}
void AppsGridControllerTestHelper::SinkEvents() {
- message_loop_.PostTask(FROM_HERE, MessageLoop::QuitClosure());
+ message_loop_.PostTask(FROM_HERE, base::MessageLoop::QuitClosure());
message_loop_.Run();
}
« no previous file with comments | « ui/app_list/cocoa/test/apps_grid_controller_test_helper.h ('k') | ui/app_list/pagination_model_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698