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 "content/browser/mach_broker_mac.h" | 5 #include "content/browser/mach_broker_mac.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/mac/foundation_util.h" | 9 #include "base/mac/foundation_util.h" |
10 #include "base/mach_ipc_mac.h" | 10 #include "base/mach_ipc_mac.h" |
11 #include "base/string_util.h" | 11 #include "base/string_util.h" |
12 #include "base/stringprintf.h" | 12 #include "base/stringprintf.h" |
13 #include "base/sys_string_conversions.h" | 13 #include "base/sys_string_conversions.h" |
14 #include "base/threading/platform_thread.h" | 14 #include "base/threading/platform_thread.h" |
15 #include "content/browser/browser_thread.h" | |
16 #include "content/browser/renderer_host/render_process_host.h" | 15 #include "content/browser/renderer_host/render_process_host.h" |
17 #include "content/common/child_process_info.h" | 16 #include "content/common/child_process_info.h" |
| 17 #include "content/public/browser/browser_thread.h" |
18 #include "content/public/browser/notification_service.h" | 18 #include "content/public/browser/notification_service.h" |
19 #include "content/public/browser/notification_types.h" | 19 #include "content/public/browser/notification_types.h" |
20 #include "content/public/common/content_switches.h" | 20 #include "content/public/common/content_switches.h" |
21 | 21 |
22 namespace { | 22 namespace { |
23 // Prints a string representation of a Mach error code. | 23 // Prints a string representation of a Mach error code. |
24 std::string MachErrorCode(kern_return_t err) { | 24 std::string MachErrorCode(kern_return_t err) { |
25 return base::StringPrintf("0x%x %s", err, mach_error_string(err)); | 25 return base::StringPrintf("0x%x %s", err, mach_error_string(err)); |
26 } | 26 } |
27 } // namespace | 27 } // namespace |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 | 228 |
229 // static | 229 // static |
230 std::string MachBroker::GetMachPortName() { | 230 std::string MachBroker::GetMachPortName() { |
231 const CommandLine* command_line = CommandLine::ForCurrentProcess(); | 231 const CommandLine* command_line = CommandLine::ForCurrentProcess(); |
232 const bool is_child = command_line->HasSwitch(switches::kProcessType); | 232 const bool is_child = command_line->HasSwitch(switches::kProcessType); |
233 | 233 |
234 // In non-browser (child) processes, use the parent's pid. | 234 // In non-browser (child) processes, use the parent's pid. |
235 const pid_t pid = is_child ? getppid() : getpid(); | 235 const pid_t pid = is_child ? getppid() : getpid(); |
236 return base::StringPrintf("%s.rohitfork.%d", base::mac::BaseBundleID(), pid); | 236 return base::StringPrintf("%s.rohitfork.%d", base::mac::BaseBundleID(), pid); |
237 } | 237 } |
OLD | NEW |