summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/browser_process_impl.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc
index ac27985..24a3098 100644
--- a/chrome/browser/browser_process_impl.cc
+++ b/chrome/browser/browser_process_impl.cc
@@ -284,7 +284,9 @@ void BrowserProcessImpl::CreateFileThread() {
scoped_ptr<base::Thread> thread(
new BrowserProcessSubThread(ChromeThread::FILE));
- if (!thread->Start())
+ base::Thread::Options options;
+ options.message_loop_type = MessageLoop::TYPE_UI;
+ if (!thread->StartWithOptions(options))
return;
file_thread_.swap(thread);
}