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

Unified Diff: chrome/browser/ui/views/extensions/extension_installed_bubble.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/views/extensions/extension_installed_bubble.cc
diff --git a/chrome/browser/ui/views/extensions/extension_installed_bubble.cc b/chrome/browser/ui/views/extensions/extension_installed_bubble.cc
index c1dca2895c477c016f1694b6baba99ecec045ae1..0384c9a873942fae1b26ead7b507b6988f60a658 100644
--- a/chrome/browser/ui/views/extensions/extension_installed_bubble.cc
+++ b/chrome/browser/ui/views/extensions/extension_installed_bubble.cc
@@ -578,7 +578,7 @@ void ExtensionInstalledBubble::Observe(
if (extension == extension_) {
animation_wait_retries_ = 0;
// PostTask to ourself to allow all EXTENSION_LOADED Observers to run.
- MessageLoopForUI::current()->PostTask(
+ base::MessageLoopForUI::current()->PostTask(
FROM_HERE,
base::Bind(&ExtensionInstalledBubble::ShowInternal,
weak_factory_.GetWeakPtr()));
@@ -608,7 +608,7 @@ void ExtensionInstalledBubble::ShowInternal() {
animation_wait_retries_++ < kAnimationWaitMaxRetry) {
// We don't know where the view will be until the container has stopped
// animating, so check back in a little while.
- MessageLoopForUI::current()->PostDelayedTask(
+ base::MessageLoopForUI::current()->PostDelayedTask(
FROM_HERE,
base::Bind(&ExtensionInstalledBubble::ShowInternal,
weak_factory_.GetWeakPtr()),

Powered by Google App Engine
This is Rietveld 408576698