OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef IPC_IPC_CHANNEL_H_ | 5 #ifndef IPC_IPC_CHANNEL_H_ |
6 #define IPC_IPC_CHANNEL_H_ | 6 #define IPC_IPC_CHANNEL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
11 #include <string> | 11 #include <string> |
12 | 12 |
13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
14 #include "base/files/scoped_file.h" | 14 #include "base/files/scoped_file.h" |
| 15 #include "base/memory/scoped_ptr.h" |
15 #include "base/process/process.h" | 16 #include "base/process/process.h" |
16 #include "build/build_config.h" | 17 #include "build/build_config.h" |
17 #include "ipc/ipc_channel_handle.h" | 18 #include "ipc/ipc_channel_handle.h" |
18 #include "ipc/ipc_endpoint.h" | 19 #include "ipc/ipc_endpoint.h" |
19 #include "ipc/ipc_message.h" | 20 #include "ipc/ipc_message.h" |
20 | 21 |
21 #if defined(OS_POSIX) | 22 #if defined(OS_POSIX) |
22 #include <sys/types.h> | 23 #include <sys/types.h> |
23 #endif | 24 #endif |
24 | 25 |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 | 259 |
259 #if defined(OS_POSIX) | 260 #if defined(OS_POSIX) |
260 // SocketPair() creates a pair of socket FDs suitable for using with | 261 // SocketPair() creates a pair of socket FDs suitable for using with |
261 // IPC::Channel. | 262 // IPC::Channel. |
262 IPC_EXPORT bool SocketPair(int* fd1, int* fd2); | 263 IPC_EXPORT bool SocketPair(int* fd1, int* fd2); |
263 #endif | 264 #endif |
264 | 265 |
265 } // namespace IPC | 266 } // namespace IPC |
266 | 267 |
267 #endif // IPC_IPC_CHANNEL_H_ | 268 #endif // IPC_IPC_CHANNEL_H_ |
OLD | NEW |