• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2012 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.
4 
5 #include "base/debug/debugger.h"
6 #include "base/message_loop/message_loop.h"
7 #include "base/metrics/statistics_recorder.h"
8 #include "chrome/common/chrome_switches.h"
9 #include "chrome/common/service_process_util.h"
10 #include "chrome/service/service_process.h"
11 #include "content/public/common/main_function_params.h"
12 #include "net/url_request/url_request.h"
13 
14 #if defined(OS_WIN)
15 #include "content/public/common/sandbox_init.h"
16 #include "sandbox/win/src/sandbox_types.h"
17 #endif  // defined(OS_WIN)
18 
19 // Mainline routine for running as the service process.
ServiceProcessMain(const content::MainFunctionParams & parameters)20 int ServiceProcessMain(const content::MainFunctionParams& parameters) {
21   // Chrome disallows cookies by default. All code paths that want to use
22   // cookies should go through the browser process.
23   net::URLRequest::SetDefaultCookiePolicyToBlock();
24 
25   base::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);
29   }
30 
31   VLOG(1) << "Service process launched: "
32           << parameters.command_line.GetCommandLineString();
33 
34   base::PlatformThread::SetName("CrServiceMain");
35   base::StatisticsRecorder::Initialize();
36 
37   // If there is already a service process running, quit now.
38   scoped_ptr<ServiceProcessState> state(new ServiceProcessState);
39   if (!state->Initialize())
40     return 0;
41 
42   ServiceProcess service_process;
43   if (service_process.Initialize(&main_message_loop,
44                                  parameters.command_line,
45                                  state.release())) {
46     base::MessageLoop::current()->Run();
47   } else {
48     LOG(ERROR) << "Service process failed to initialize";
49   }
50   service_process.Teardown();
51   return 0;
52 }
53