| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "services/service_manager/runner/host/child_process_base.h" | 5 #include "services/service_manager/runner/host/child_process_base.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/debug/stack_trace.h" | 8 #include "base/debug/stack_trace.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #if defined(OS_LINUX) | 21 #if defined(OS_LINUX) |
| 22 #include "base/rand_util.h" | 22 #include "base/rand_util.h" |
| 23 #include "base/sys_info.h" | 23 #include "base/sys_info.h" |
| 24 #include "services/service_manager/runner/host/linux_sandbox.h" | 24 #include "services/service_manager/runner/host/linux_sandbox.h" |
| 25 #endif | 25 #endif |
| 26 | 26 |
| 27 #if defined(OS_MACOSX) | 27 #if defined(OS_MACOSX) |
| 28 #include "services/service_manager/runner/host/mach_broker.h" | 28 #include "services/service_manager/runner/host/mach_broker.h" |
| 29 #endif | 29 #endif |
| 30 | 30 |
| 31 namespace shell { | 31 namespace service_manager { |
| 32 | 32 |
| 33 namespace { | 33 namespace { |
| 34 | 34 |
| 35 #if defined(OS_LINUX) | 35 #if defined(OS_LINUX) |
| 36 std::unique_ptr<LinuxSandbox> InitializeSandbox() { | 36 std::unique_ptr<LinuxSandbox> InitializeSandbox() { |
| 37 using sandbox::syscall_broker::BrokerFilePermission; | 37 using sandbox::syscall_broker::BrokerFilePermission; |
| 38 // Warm parts of base in the copy of base in the mojo runner. | 38 // Warm parts of base in the copy of base in the mojo runner. |
| 39 base::RandUint64(); | 39 base::RandUint64(); |
| 40 base::SysInfo::AmountOfPhysicalMemory(); | 40 base::SysInfo::AmountOfPhysicalMemory(); |
| 41 base::SysInfo::NumberOfProcessors(); | 41 base::SysInfo::NumberOfProcessors(); |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 const base::CommandLine& command_line = | 118 const base::CommandLine& command_line = |
| 119 *base::CommandLine::ForCurrentProcess(); | 119 *base::CommandLine::ForCurrentProcess(); |
| 120 if (command_line.HasSwitch(switches::kEnableSandbox)) | 120 if (command_line.HasSwitch(switches::kEnableSandbox)) |
| 121 sandbox = InitializeSandbox(); | 121 sandbox = InitializeSandbox(); |
| 122 #endif | 122 #endif |
| 123 | 123 |
| 124 ScopedAppContext app_context; | 124 ScopedAppContext app_context; |
| 125 callback.Run(GetServiceRequestFromCommandLine()); | 125 callback.Run(GetServiceRequestFromCommandLine()); |
| 126 } | 126 } |
| 127 | 127 |
| 128 } // namespace shell | 128 } // namespace service_manager |
| OLD | NEW |