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

Side by Side Diff: ipc/ipc_channel.h

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 months 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 | « gpu/gles2_conform_support/native/main.cc ('k') | ipc/unix_domain_socket_util_unittest.cc » ('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 (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
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_
OLDNEW
« no previous file with comments | « gpu/gles2_conform_support/native/main.cc ('k') | ipc/unix_domain_socket_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698