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

Unified Diff: chrome/browser/extensions/extension_action.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
Index: chrome/browser/extensions/extension_action.cc
diff --git a/chrome/browser/extensions/extension_action.cc b/chrome/browser/extensions/extension_action.cc
index d8ec44f895d76d3cfba2b66a38a8bd414bef317f..f86760ff145beb6fc6afced2a45cd95f6bffd999 100644
--- a/chrome/browser/extensions/extension_action.cc
+++ b/chrome/browser/extensions/extension_action.cc
@@ -394,7 +394,7 @@ void ExtensionAction::RunIconAnimation(int tab_id) {
// timer delays), destroy it. We use a delayed task so that the Animation is
// deleted even if it hasn't finished by the time the MessageLoop is
// destroyed.
- MessageLoop::current()->PostDelayedTask(
+ base::MessageLoop::current()->PostDelayedTask(
FROM_HERE,
base::Bind(&DestroyIconAnimation, base::Passed(&icon_animation)),
base::TimeDelta::FromMilliseconds(kIconFadeInDurationMs * 2));

Powered by Google App Engine
This is Rietveld 408576698