OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "base/message_loop/message_loop.h" | 5 #include "base/message_loop/message_loop.h" |
| 6 #include "base/run_loop.h" |
6 #include "base/threading/platform_thread.h" | 7 #include "base/threading/platform_thread.h" |
7 #include "build/build_config.h" | 8 #include "build/build_config.h" |
8 #include "content/child/child_process.h" | 9 #include "content/child/child_process.h" |
9 #include "content/common/content_constants_internal.h" | 10 #include "content/common/content_constants_internal.h" |
10 #include "content/ppapi_plugin/ppapi_thread.h" | 11 #include "content/ppapi_plugin/ppapi_thread.h" |
11 #include "content/public/common/content_switches.h" | 12 #include "content/public/common/content_switches.h" |
12 #include "content/public/common/main_function_params.h" | 13 #include "content/public/common/main_function_params.h" |
13 | 14 |
14 namespace content { | 15 namespace content { |
15 | 16 |
16 // Main function for starting the PPAPI broker process. | 17 // Main function for starting the PPAPI broker process. |
17 int PpapiBrokerMain(const MainFunctionParams& parameters) { | 18 int PpapiBrokerMain(const MainFunctionParams& parameters) { |
18 const base::CommandLine& command_line = parameters.command_line; | 19 const base::CommandLine& command_line = parameters.command_line; |
19 if (command_line.HasSwitch(switches::kPpapiStartupDialog)) { | 20 if (command_line.HasSwitch(switches::kPpapiStartupDialog)) { |
20 ChildProcess::WaitForDebugger("PpapiBroker"); | 21 ChildProcess::WaitForDebugger("PpapiBroker"); |
21 } | 22 } |
22 | 23 |
23 base::MessageLoop main_message_loop; | 24 base::MessageLoop main_message_loop; |
24 base::PlatformThread::SetName("CrPPAPIBrokerMain"); | 25 base::PlatformThread::SetName("CrPPAPIBrokerMain"); |
25 base::trace_event::TraceLog::GetInstance()->SetProcessName( | 26 base::trace_event::TraceLog::GetInstance()->SetProcessName( |
26 "PPAPI Broker Process"); | 27 "PPAPI Broker Process"); |
27 base::trace_event::TraceLog::GetInstance()->SetProcessSortIndex( | 28 base::trace_event::TraceLog::GetInstance()->SetProcessSortIndex( |
28 kTraceEventPpapiBrokerProcessSortIndex); | 29 kTraceEventPpapiBrokerProcessSortIndex); |
29 | 30 |
30 ChildProcess ppapi_broker_process; | 31 ChildProcess ppapi_broker_process; |
31 ppapi_broker_process.set_main_thread( | 32 ppapi_broker_process.set_main_thread( |
32 new PpapiThread(parameters.command_line, true)); // Broker. | 33 new PpapiThread(parameters.command_line, true)); // Broker. |
33 | 34 |
34 main_message_loop.Run(); | 35 base::RunLoop().Run(); |
35 DVLOG(1) << "PpapiBrokerMain exiting"; | 36 DVLOG(1) << "PpapiBrokerMain exiting"; |
36 return 0; | 37 return 0; |
37 } | 38 } |
38 | 39 |
39 } // namespace content | 40 } // namespace content |
OLD | NEW |