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

Unified Diff: chrome/browser/extensions/extension_uninstall_dialog.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/extensions/extension_uninstall_dialog.cc
diff --git a/chrome/browser/extensions/extension_uninstall_dialog.cc b/chrome/browser/extensions/extension_uninstall_dialog.cc
index 55171acb223bc0f6829a8796761d1625cae7a6b2..930aec644360b50717110430f67eb906ddc9a2db 100644
--- a/chrome/browser/extensions/extension_uninstall_dialog.cc
+++ b/chrome/browser/extensions/extension_uninstall_dialog.cc
@@ -62,7 +62,7 @@ ExtensionUninstallDialog::ExtensionUninstallDialog(
delegate_(delegate),
extension_(NULL),
state_(kImageIsLoading),
- ui_loop_(MessageLoop::current()) {
+ ui_loop_(base::MessageLoop::current()) {
if (browser) {
registrar_.Add(this,
chrome::NOTIFICATION_BROWSER_CLOSED,
@@ -75,7 +75,7 @@ ExtensionUninstallDialog::~ExtensionUninstallDialog() {
void ExtensionUninstallDialog::ConfirmUninstall(
const extensions::Extension* extension) {
- DCHECK(ui_loop_ == MessageLoop::current());
+ DCHECK(ui_loop_ == base::MessageLoop::current());
extension_ = extension;
#if defined(ENABLE_MANAGED_USERS) && !defined(OS_CHROMEOS)

Powered by Google App Engine
This is Rietveld 408576698