Fix build break
[chromium-blink-merge.git] / content / ppapi_plugin / ppapi_broker_main.cc
blob04315f51e5b053c71f49994d990e599e31efa8b4
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
3 // found in the LICENSE file.
5 #include "base/message_loop.h"
6 #include "base/threading/platform_thread.h"
7 #include "build/build_config.h"
8 #include "content/common/child_process.h"
9 #include "content/ppapi_plugin/ppapi_thread.h"
10 #include "content/public/common/content_switches.h"
11 #include "content/public/common/main_function_params.h"
13 namespace content {
15 // Main function for starting the PPAPI broker process.
16 int PpapiBrokerMain(const MainFunctionParams& parameters) {
17 const CommandLine& command_line = parameters.command_line;
18 if (command_line.HasSwitch(switches::kPpapiStartupDialog)) {
19 ChildProcess::WaitForDebugger("PpapiBroker");
22 MessageLoop main_message_loop(MessageLoop::TYPE_DEFAULT);
23 base::PlatformThread::SetName("CrPPAPIBrokerMain");
25 ChildProcess ppapi_broker_process;
26 ppapi_broker_process.set_main_thread(
27 new PpapiThread(parameters.command_line, true)); // Broker.
29 main_message_loop.Run();
30 DVLOG(1) << "PpapiBrokerMain exiting";
31 return 0;
34 } // namespace content