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

Unified Diff: chrome/browser/first_run/first_run.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/first_run/first_run.cc
diff --git a/chrome/browser/first_run/first_run.cc b/chrome/browser/first_run/first_run.cc
index 38ec3926364108e3bb7af3268c0ab13a89a7872a..44defc6c16ce221af10816344703fc35d76cbf1b 100644
--- a/chrome/browser/first_run/first_run.cc
+++ b/chrome/browser/first_run/first_run.cc
@@ -216,7 +216,7 @@ void ImportFromFile(Profile* profile, const CommandLine& cmdline) {
// If the import process has not errored out, block on it.
if (!observer.ended()) {
observer.set_should_quit_message_loop();
- MessageLoop::current()->Run();
+ base::MessageLoop::current()->Run();
}
}
@@ -248,7 +248,7 @@ static base::LazyInstance<base::FilePath> master_prefs_path_for_testing
void ImportEndedObserver::ImportEnded() {
ended_ = true;
if (should_quit_message_loop_)
- MessageLoop::current()->Quit();
+ base::MessageLoop::current()->Quit();
}
installer::MasterPreferences*

Powered by Google App Engine
This is Rietveld 408576698