chrome: bluetooth: hook up the AdapterAdded signal
[chromium-blink-merge.git] / chrome / service / service_main.cc
blobbcde1badbfa05116ad3ca97ddfd37b6e35cb7c9d
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/debug/debugger.h"
6 #include "base/message_loop.h"
7 #include "chrome/common/chrome_switches.h"
8 #include "chrome/common/service_process_util.h"
9 #include "chrome/service/service_process.h"
10 #include "content/public/common/main_function_params.h"
12 #if defined(OS_WIN)
13 #include "content/common/sandbox_policy.h"
14 #include "sandbox/src/sandbox_types.h"
15 #elif defined(OS_MACOSX)
16 #include "chrome/service/chrome_service_application_mac.h"
17 #endif // defined(OS_WIN)
19 // Mainline routine for running as the service process.
20 int ServiceProcessMain(const content::MainFunctionParams& parameters) {
21 #if defined(OS_MACOSX)
22 chrome_service_application_mac::RegisterServiceApp();
23 #endif
25 MessageLoopForUI main_message_loop;
26 main_message_loop.set_thread_name("MainThread");
27 if (parameters.command_line.HasSwitch(switches::kWaitForDebugger)) {
28 base::debug::WaitForDebugger(60, true);
31 VLOG(1) << "Service process launched: "
32 << parameters.command_line.GetCommandLineString();
34 base::PlatformThread::SetName("CrServiceMain");
36 // If there is already a service process running, quit now.
37 scoped_ptr<ServiceProcessState> state(new ServiceProcessState);
38 if (!state->Initialize())
39 return 0;
41 #if defined(OS_WIN)
42 sandbox::BrokerServices* broker_services =
43 parameters.sandbox_info->broker_services;
44 if (broker_services)
45 sandbox::InitBrokerServices(broker_services);
46 #endif // defined(OS_WIN)
48 ServiceProcess service_process;
49 if (service_process.Initialize(&main_message_loop,
50 parameters.command_line,
51 state.release())) {
52 MessageLoop::current()->Run();
53 } else {
54 LOG(ERROR) << "Service process failed to initialize";
56 service_process.Teardown();
57 return 0;