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

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: 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
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 4d748539fb6c2da96a6a4845081a27141df751cc..1e5dcdf8b56c14846ae2204f20a70391ecc8e3fc 100644
--- a/chrome/browser/chromeos/login/wizard_controller_browsertest.cc
+++ b/chrome/browser/chromeos/login/wizard_controller_browsertest.cc
@@ -295,7 +295,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();
@@ -306,7 +306,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