| 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 "sandbox/mac/launchd_interception_server.h" | 5 #include "sandbox/mac/launchd_interception_server.h" |
| 6 | 6 |
| 7 #include <servers/bootstrap.h> | 7 #include <servers/bootstrap.h> |
| 8 #include <stddef.h> | |
| 9 #include <stdint.h> | |
| 10 | 8 |
| 11 #include "base/logging.h" | 9 #include "base/logging.h" |
| 12 #include "base/mac/mac_util.h" | 10 #include "base/mac/mac_util.h" |
| 13 #include "base/mac/mach_logging.h" | 11 #include "base/mac/mach_logging.h" |
| 14 #include "sandbox/mac/bootstrap_sandbox.h" | 12 #include "sandbox/mac/bootstrap_sandbox.h" |
| 15 #include "sandbox/mac/mach_message_server.h" | 13 #include "sandbox/mac/mach_message_server.h" |
| 16 #include "sandbox/mac/os_compatibility.h" | 14 #include "sandbox/mac/os_compatibility.h" |
| 17 #include "sandbox/mac/xpc_message_server.h" | 15 #include "sandbox/mac/xpc_message_server.h" |
| 18 | 16 |
| 19 namespace sandbox { | 17 namespace sandbox { |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 if (xpc_launchd_) { | 170 if (xpc_launchd_) { |
| 173 // xpc_dictionary_set_mach_send increments the send right count. | 171 // xpc_dictionary_set_mach_send increments the send right count. |
| 174 xpc_dictionary_set_mach_send(request.xpc, "domain-port", | 172 xpc_dictionary_set_mach_send(request.xpc, "domain-port", |
| 175 sandbox_->real_bootstrap_port()); | 173 sandbox_->real_bootstrap_port()); |
| 176 } | 174 } |
| 177 | 175 |
| 178 message_server_->ForwardMessage(request, sandbox_->real_bootstrap_port()); | 176 message_server_->ForwardMessage(request, sandbox_->real_bootstrap_port()); |
| 179 } | 177 } |
| 180 | 178 |
| 181 } // namespace sandbox | 179 } // namespace sandbox |
| OLD | NEW |