summaryrefslogtreecommitdiffstats
path: root/chrome/utility/utility_main.cc
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-23 00:25:06 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-23 00:25:06 +0000
commitf784592cd075d7866c74e410833768c8b6f9b622 (patch)
tree8512d6dc402faef8df803c7ff07ba5b77eecda3f /chrome/utility/utility_main.cc
parenta63f220009f90657fc1070d4a9bde26726deb6b4 (diff)
downloadchromium_src-f784592cd075d7866c74e410833768c8b6f9b622.zip
chromium_src-f784592cd075d7866c74e410833768c8b6f9b622.tar.gz
chromium_src-f784592cd075d7866c74e410833768c8b6f9b622.tar.bz2
Switch the first thread in a child process to be the main thread, and make theIO thread be the second thread. The change is needed for plugins on mac.
Review URL: http://codereview.chromium.org/155944 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21355 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/utility/utility_main.cc')
-rw-r--r--chrome/utility/utility_main.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/utility/utility_main.cc b/chrome/utility/utility_main.cc
index ad66043c..bb669a7 100644
--- a/chrome/utility/utility_main.cc
+++ b/chrome/utility/utility_main.cc
@@ -20,15 +20,16 @@
// Mainline routine for running as the utility process.
int UtilityMain(const MainFunctionParams& parameters) {
- // The main thread of the render process.
- MessageLoopForIO main_message_loop;
+ // The main message loop of the utility process.
+ MessageLoop main_message_loop;
std::wstring app_name = chrome::kBrowserAppName;
PlatformThread::SetName(WideToASCII(app_name + L"_UtilityMain").c_str());
// Initialize the SystemMonitor
base::SystemMonitor::Start();
- ChildProcess utility_process(new UtilityThread());
+ ChildProcess utility_process;
+ utility_process.set_main_thread(new UtilityThread());
#if defined(OS_WIN)
sandbox::TargetServices* target_services =
parameters.sandbox_info_.TargetServices();