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

Side by Side Diff: sandbox/linux/integration_tests/namespace_unix_domain_socket_unittest.cc

Issue 1538283002: Switch to standard integer types in sandbox/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: macros 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
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 <sched.h> 5 #include <sched.h>
6 #include <stddef.h>
6 #include <stdio.h> 7 #include <stdio.h>
7 #include <string.h> 8 #include <string.h>
8 #include <sys/socket.h> 9 #include <sys/socket.h>
9 #include <sys/syscall.h> 10 #include <sys/syscall.h>
10 #include <sys/wait.h> 11 #include <sys/wait.h>
11 #include <unistd.h> 12 #include <unistd.h>
12 13
13 #include <utility> 14 #include <utility>
14 #include <vector> 15 #include <vector>
15 16
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 259
259 // Parent process. 260 // Parent process.
260 recv_sock.reset(); 261 recv_sock.reset();
261 SendHello(send_sock.get()); 262 SendHello(send_sock.get());
262 WaitForExit(pid); 263 WaitForExit(pid);
263 } 264 }
264 265
265 } // namespace 266 } // namespace
266 267
267 } // namespace sandbox 268 } // namespace sandbox
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698