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

Unified Diff: chrome/browser/first_run/try_chrome_dialog_view.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/first_run/first_run.cc ('k') | chrome/browser/geolocation/access_token_store_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/first_run/try_chrome_dialog_view.cc
diff --git a/chrome/browser/first_run/try_chrome_dialog_view.cc b/chrome/browser/first_run/try_chrome_dialog_view.cc
index dee183f7129c4f5c1b1e4590ebcc873cbba4a14f..3678ed1e0783b773b017bd225ddff0dff5b9b67d 100644
--- a/chrome/browser/first_run/try_chrome_dialog_view.cc
+++ b/chrome/browser/first_run/try_chrome_dialog_view.cc
@@ -301,7 +301,7 @@ TryChromeDialogView::Result TryChromeDialogView::ShowModal(
popup_->Show();
if (!listener.is_null())
listener.Run(popup_->GetNativeView());
- MessageLoop::current()->Run();
+ base::MessageLoop::current()->Run();
if (!listener.is_null())
listener.Run(NULL);
return result_;
@@ -374,7 +374,7 @@ void TryChromeDialogView::ButtonPressed(views::Button* sender,
}
popup_->Close();
- MessageLoop::current()->Quit();
+ base::MessageLoop::current()->Quit();
}
void TryChromeDialogView::LinkClicked(views::Link* source, int event_flags) {
« no previous file with comments | « chrome/browser/first_run/first_run.cc ('k') | chrome/browser/geolocation/access_token_store_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698