summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/browser_main.cc')
-rw-r--r--chrome/browser/browser_main.cc13
1 files changed, 7 insertions, 6 deletions
diff --git a/chrome/browser/browser_main.cc b/chrome/browser/browser_main.cc
index 1509b24..6475c88 100644
--- a/chrome/browser/browser_main.cc
+++ b/chrome/browser/browser_main.cc
@@ -620,6 +620,13 @@ int BrowserMain(const MainFunctionParams& parameters) {
}
}
+ // Create the child threads. We need to do this since ChromeThread::PostTask
+ // silently deletes a posted task if the target message loop isn't created.
+ // Note: must be done before FirstRun code is started.
+ browser_process->db_thread();
+ browser_process->file_thread();
+ browser_process->io_thread();
+
// Importing other browser settings is done in a browser-like process
// that exits when this task has finished.
#if defined(OS_WIN)
@@ -701,12 +708,6 @@ int BrowserMain(const MainFunctionParams& parameters) {
net::EnsureWinsockInit();
#endif // defined(OS_WIN)
- // Create the child threads. We need to do this since ChromeThread::PostTask
- // silently deletes a posted task if the target message loop isn't created.
- browser_process->db_thread();
- browser_process->file_thread();
- browser_process->io_thread();
-
// Initialize and maintain DNS prefetcher module.
chrome_browser_net::DnsPrefetcherInit dns_prefetch(user_prefs, local_state);