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

Unified Diff: chrome/browser/chromeos/login/wizard_controller_browsertest.cc

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again Created 7 years, 7 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: chrome/browser/chromeos/login/wizard_controller_browsertest.cc
diff --git a/chrome/browser/chromeos/login/wizard_controller_browsertest.cc b/chrome/browser/chromeos/login/wizard_controller_browsertest.cc
index 373b142bc87c8dc2712d7fe5d8df8396452e026b..361523c2c260e07cd6b3cc6bfe5d1c396d53070f 100644
--- a/chrome/browser/chromeos/login/wizard_controller_browsertest.cc
+++ b/chrome/browser/chromeos/login/wizard_controller_browsertest.cc
@@ -307,7 +307,7 @@ IN_PROC_BROWSER_TEST_F(WizardControllerFlowTest,
ExistingUserController::current_controller()->CompleteLogin(
UserContext(kUsername, kPassword, ""));
// Run the tasks posted to complete the login:
- MessageLoop::current()->RunUntilIdle();
+ base::MessageLoop::current()->RunUntilIdle();
EnrollmentScreen* screen =
WizardController::default_controller()->GetEnrollmentScreen();
@@ -318,7 +318,7 @@ IN_PROC_BROWSER_TEST_F(WizardControllerFlowTest,
// Prevent browser launch when the profile is prepared:
browser_shutdown::SetTryingToQuit(true);
// Run the tasks posted to complete the login:
- MessageLoop::current()->RunUntilIdle();
+ base::MessageLoop::current()->RunUntilIdle();
}
IN_PROC_BROWSER_TEST_F(WizardControllerFlowTest, ControlFlowResetScreen) {

Powered by Google App Engine
This is Rietveld 408576698