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

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: 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
« no previous file with comments | « chrome/browser/feedback/feedback_util.cc ('k') | chrome/browser/first_run/try_chrome_dialog_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 9ff9d5b1d7be4126db22873ef00c2b8b191725ba..f5c40b3d0719f528dfc0bbb520fce7e8d9150085 100644
--- a/chrome/browser/first_run/first_run.cc
+++ b/chrome/browser/first_run/first_run.cc
@@ -88,7 +88,7 @@ class ImportEndedObserver : public importer::ImporterProgressObserver {
virtual void ImportEnded() OVERRIDE {
ended_ = true;
if (should_quit_message_loop_)
- MessageLoop::current()->Quit();
+ base::MessageLoop::current()->Quit();
}
void set_should_quit_message_loop() {
@@ -244,7 +244,7 @@ void ImportFromSourceProfile(ImporterHost* importer_host,
// 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();
}
}
« no previous file with comments | « chrome/browser/feedback/feedback_util.cc ('k') | chrome/browser/first_run/try_chrome_dialog_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698