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

Side by Side Diff: ipc/ipc_channel.h

Issue 11308082: ipc: Remove ipc_listener.h from ipc_channel.h and update the files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « content/test/webrtc_audio_device_test.h ('k') | ipc/ipc_channel_win.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 <string> 8 #include <string>
9 9
10 #if defined(OS_POSIX) 10 #if defined(OS_POSIX)
11 #include <sys/types.h> 11 #include <sys/types.h>
12 #endif 12 #endif
13 13
14 #include "base/compiler_specific.h" 14 #include "base/compiler_specific.h"
15 #include "base/process.h" 15 #include "base/process.h"
16 #include "ipc/ipc_channel_handle.h" 16 #include "ipc/ipc_channel_handle.h"
17 #include "ipc/ipc_message.h" 17 #include "ipc/ipc_message.h"
18 #include "ipc/ipc_sender.h" 18 #include "ipc/ipc_sender.h"
19 19
20 // TODO(brettw) remove this and update files that depend on this being included
21 // from here.
22 #include "ipc/ipc_listener.h"
23
24 namespace IPC { 20 namespace IPC {
25 21
26 class Listener; 22 class Listener;
27 23
28 //------------------------------------------------------------------------------ 24 //------------------------------------------------------------------------------
29 // See 25 // See
30 // http://www.chromium.org/developers/design-documents/inter-process-communicati on 26 // http://www.chromium.org/developers/design-documents/inter-process-communicati on
31 // for overview of IPC in Chromium. 27 // for overview of IPC in Chromium.
32 28
33 // Channels are implemented using named pipes on Windows, and 29 // Channels are implemented using named pipes on Windows, and
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 202
207 private: 203 private:
208 // PIMPL to which all channel calls are delegated. 204 // PIMPL to which all channel calls are delegated.
209 class ChannelImpl; 205 class ChannelImpl;
210 ChannelImpl *channel_impl_; 206 ChannelImpl *channel_impl_;
211 }; 207 };
212 208
213 } // namespace IPC 209 } // namespace IPC
214 210
215 #endif // IPC_IPC_CHANNEL_H_ 211 #endif // IPC_IPC_CHANNEL_H_
OLDNEW
« no previous file with comments | « content/test/webrtc_audio_device_test.h ('k') | ipc/ipc_channel_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698