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

Unified Diff: chrome/browser/ui/gtk/first_run_dialog.cc

Issue 14307023: chrome: Use base::MessageLoop. (Part 2) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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/ui/gtk/first_run_dialog.cc
diff --git a/chrome/browser/ui/gtk/first_run_dialog.cc b/chrome/browser/ui/gtk/first_run_dialog.cc
index 31695e6550891fdff87d2627d5e7815bcdf838bf..85e1b7699b6f14a9251809bf615e0455991bfa77 100644
--- a/chrome/browser/ui/gtk/first_run_dialog.cc
+++ b/chrome/browser/ui/gtk/first_run_dialog.cc
@@ -95,7 +95,7 @@ bool FirstRunDialog::Show() {
// but that spins a nested message loop and hoses us. :(
// http://code.google.com/p/chromium/issues/detail?id=12552
// Instead, run a loop directly here.
- MessageLoop::current()->Run();
+ base::MessageLoop::current()->Run();
}
#endif // defined(GOOGLE_CHROME_BUILD)
return dialog_shown;
@@ -195,6 +195,6 @@ void FirstRunDialog::FirstRunDone() {
if (dialog_)
gtk_widget_destroy(dialog_);
- MessageLoop::current()->Quit();
+ base::MessageLoop::current()->Quit();
delete this;
}
« no previous file with comments | « chrome/browser/ui/gtk/extensions/extension_popup_gtk.cc ('k') | chrome/browser/ui/gtk/importer/import_lock_dialog_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698