OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "app/hi_res_timer_manager.h" | |
6 #include "app/system_monitor.h" | |
7 #include "base/command_line.h" | 5 #include "base/command_line.h" |
8 #include "base/message_loop.h" | 6 #include "base/message_loop.h" |
9 #include "base/string_util.h" | 7 #include "base/string_util.h" |
10 #include "base/threading/platform_thread.h" | 8 #include "base/threading/platform_thread.h" |
11 #include "chrome/common/child_process.h" | 9 #include "chrome/common/child_process.h" |
12 #include "chrome/common/chrome_constants.h" | 10 #include "chrome/common/chrome_constants.h" |
13 #include "chrome/common/chrome_switches.h" | 11 #include "chrome/common/chrome_switches.h" |
| 12 #include "chrome/common/hi_res_timer_manager.h" |
14 #include "chrome/common/logging_chrome.h" | 13 #include "chrome/common/logging_chrome.h" |
15 #include "chrome/common/main_function_params.h" | 14 #include "chrome/common/main_function_params.h" |
16 #include "chrome/worker/worker_thread.h" | 15 #include "chrome/worker/worker_thread.h" |
| 16 #include "ui/base/system_monitor/system_monitor.h" |
17 | 17 |
18 #if defined(OS_WIN) | 18 #if defined(OS_WIN) |
19 #include "chrome/common/sandbox_init_wrapper.h" | 19 #include "chrome/common/sandbox_init_wrapper.h" |
20 #include "sandbox/src/sandbox.h" | 20 #include "sandbox/src/sandbox.h" |
21 #endif | 21 #endif |
22 | 22 |
23 // Mainline routine for running as the worker process. | 23 // Mainline routine for running as the worker process. |
24 int WorkerMain(const MainFunctionParams& parameters) { | 24 int WorkerMain(const MainFunctionParams& parameters) { |
25 // The main message loop of the worker process. | 25 // The main message loop of the worker process. |
26 MessageLoop main_message_loop; | 26 MessageLoop main_message_loop; |
27 base::PlatformThread::SetName("CrWorkerMain"); | 27 base::PlatformThread::SetName("CrWorkerMain"); |
28 | 28 |
29 SystemMonitor system_monitor; | 29 ui::SystemMonitor system_monitor; |
30 HighResolutionTimerManager hi_res_timer_manager; | 30 HighResolutionTimerManager hi_res_timer_manager; |
31 | 31 |
32 ChildProcess worker_process; | 32 ChildProcess worker_process; |
33 worker_process.set_main_thread(new WorkerThread()); | 33 worker_process.set_main_thread(new WorkerThread()); |
34 #if defined(OS_WIN) | 34 #if defined(OS_WIN) |
35 sandbox::TargetServices* target_services = | 35 sandbox::TargetServices* target_services = |
36 parameters.sandbox_info_.TargetServices(); | 36 parameters.sandbox_info_.TargetServices(); |
37 if (!target_services) | 37 if (!target_services) |
38 return false; | 38 return false; |
39 | 39 |
40 // Cause advapi32 to load before the sandbox is turned on. | 40 // Cause advapi32 to load before the sandbox is turned on. |
41 unsigned int dummy_rand; | 41 unsigned int dummy_rand; |
42 rand_s(&dummy_rand); | 42 rand_s(&dummy_rand); |
43 | 43 |
44 target_services->LowerToken(); | 44 target_services->LowerToken(); |
45 #endif | 45 #endif |
46 | 46 |
47 const CommandLine& parsed_command_line = parameters.command_line_; | 47 const CommandLine& parsed_command_line = parameters.command_line_; |
48 if (parsed_command_line.HasSwitch(switches::kWaitForDebugger)) { | 48 if (parsed_command_line.HasSwitch(switches::kWaitForDebugger)) { |
49 ChildProcess::WaitForDebugger(L"Worker"); | 49 ChildProcess::WaitForDebugger(L"Worker"); |
50 } | 50 } |
51 | 51 |
52 // Load the accelerator table from the browser executable and tell the | 52 // Load the accelerator table from the browser executable and tell the |
53 // message loop to use it when translating messages. | 53 // message loop to use it when translating messages. |
54 MessageLoop::current()->Run(); | 54 MessageLoop::current()->Run(); |
55 | 55 |
56 return 0; | 56 return 0; |
57 } | 57 } |
OLD | NEW |