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

Unified Diff: chrome/browser/browser_main.cc

Issue 340017: Fix the crashes in interactive_ui_tests on Linux.... (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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_main.cc
===================================================================
--- chrome/browser/browser_main.cc (revision 30289)
+++ chrome/browser/browser_main.cc (working copy)
@@ -410,10 +410,6 @@
local_state->RegisterBooleanPref(prefs::kMetricsReportingEnabled,
GoogleUpdateSettings::GetCollectStatsConsent());
- // Start the database thread (the order of when this happens in this function
- // doesn't matter, all we need is to kick it off).
- browser_process->db_thread();
-
#if defined(TOOLKIT_GTK)
// It is important for this to happen before the first run dialog, as it
// styles the dialog as well.
@@ -718,6 +714,12 @@
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);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698