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

Unified Diff: chrome/browser/chrome_browser_main_x11.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/chrome_browser_main_x11.cc
diff --git a/chrome/browser/chrome_browser_main_x11.cc b/chrome/browser/chrome_browser_main_x11.cc
index fadf018b3a0c719e3a2896781e00e20528762853..7326dff589315c621d1139f4a3c025a8902e3c2d 100644
--- a/chrome/browser/chrome_browser_main_x11.cc
+++ b/chrome/browser/chrome_browser_main_x11.cc
@@ -32,9 +32,8 @@ const int kWaitForUIThreadSeconds = 10;
int BrowserX11ErrorHandler(Display* d, XErrorEvent* error) {
if (!g_in_x11_io_error_handler)
- MessageLoop::current()->PostTask(
- FROM_HERE,
- base::Bind(&ui::LogErrorEventDescription, d, *error));
+ base::MessageLoop::current()->PostTask(
+ FROM_HERE, base::Bind(&ui::LogErrorEventDescription, d, *error));
return 0;
}

Powered by Google App Engine
This is Rietveld 408576698