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

Unified Diff: chrome/browser/renderer_host/render_crash_handler_host_linux.cc

Issue 329033: Fix compile failures in Chrome OS and Views builds. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 2 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
« no previous file with comments | « chrome/browser/chromeos/synaptics_library.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/render_crash_handler_host_linux.cc
===================================================================
--- chrome/browser/renderer_host/render_crash_handler_host_linux.cc (revision 30162)
+++ chrome/browser/renderer_host/render_crash_handler_host_linux.cc (working copy)
@@ -174,9 +174,9 @@
renderer_socket_ = fds[0];
browser_socket_ = fds[1];
- MessageLoop* ml = ChromeThread::GetMessageLoop(ChromeThread::IO);
- ml->PostTask(FROM_HERE, NewRunnableMethod(
- this, &RenderCrashHandlerHostLinux::Init));
+ ChromeThread::PostTask(
+ ChromeThread::IO, FROM_HERE,
+ NewRunnableMethod(this, &RenderCrashHandlerHostLinux::Init));
}
RenderCrashHandlerHostLinux::~RenderCrashHandlerHostLinux() {
« no previous file with comments | « chrome/browser/chromeos/synaptics_library.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698