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

Unified Diff: chrome/browser/ui/extensions/app_metro_infobar_delegate_win.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/extensions/app_metro_infobar_delegate_win.cc
diff --git a/chrome/browser/ui/extensions/app_metro_infobar_delegate_win.cc b/chrome/browser/ui/extensions/app_metro_infobar_delegate_win.cc
index 8d35dbd2a184e17097756d0d7ac091c38bbc1d59..11dbf1a1758e973fab8b70ddb73f24178cb16777 100644
--- a/chrome/browser/ui/extensions/app_metro_infobar_delegate_win.cc
+++ b/chrome/browser/ui/extensions/app_metro_infobar_delegate_win.cc
@@ -53,9 +53,8 @@ void AppMetroInfoBarDelegateWin::Create(
// Use PostTask because we can get here in a COM SendMessage, and
// ActivateApplication can not be sent nested (returns error
// RPC_E_CANTCALLOUT_ININPUTSYNCCALL).
- MessageLoop::current()->PostTask(
- FROM_HERE,
- base::Bind(base::IgnoreResult(chrome::ActivateMetroChrome)));
+ base::MessageLoop::current()->PostTask(
+ FROM_HERE, base::Bind(base::IgnoreResult(chrome::ActivateMetroChrome)));
}
AppMetroInfoBarDelegateWin::AppMetroInfoBarDelegateWin(

Powered by Google App Engine
This is Rietveld 408576698