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

Unified Diff: chrome/browser/browser_process_impl.cc

Issue 100145: WIP: X clipboard stuff (Closed)
Patch Set: Created 11 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
« no previous file with comments | « base/gfx/native_widget_types.h ('k') | chrome/browser/gtk/xclipboard.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_process_impl.cc
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc
index 085f773c030775439345cfa0a035a69c87a37a80..f94c5fb6abeebcc9a2504846757ffea2dbbc15ce 100644
--- a/chrome/browser/browser_process_impl.cc
+++ b/chrome/browser/browser_process_impl.cc
@@ -294,7 +294,9 @@ void BrowserProcessImpl::CreateIOThread() {
// we start it now.
scoped_ptr<base::Thread> background_x11_thread(
new BrowserProcessSubThread(ChromeThread::BACKGROUND_X11));
- if (!background_x11_thread->Start())
+ base::Thread::Options x11_options;
+ x11_options.message_loop_type = MessageLoop::TYPE_IO;
+ if (!background_x11_thread->StartWithOptions(x11_options))
return;
background_x11_thread_.swap(background_x11_thread);
#endif
« no previous file with comments | « base/gfx/native_widget_types.h ('k') | chrome/browser/gtk/xclipboard.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698