| 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
|
|
|