Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1351)

Side by Side Diff: sandbox/mac/launchd_interception_server.cc

Issue 1539423002: Revert of Switch to standard integer types in sandbox/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sandbox/mac/bootstrap_sandbox.cc ('k') | sandbox/mac/mach_message_server.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « sandbox/mac/bootstrap_sandbox.cc ('k') | sandbox/mac/mach_message_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698