OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "ipc/ipc_message.h" | 8 #include "ipc/ipc_message.h" |
9 | 9 |
10 namespace IPC { | 10 namespace IPC { |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 // On POSIX an IPC::Channel wraps a socketpair(), this method returns the | 89 // On POSIX an IPC::Channel wraps a socketpair(), this method returns the |
90 // FD # for the client end of the socket. | 90 // FD # for the client end of the socket. |
91 // This method may only be called on the server side of a channel. | 91 // This method may only be called on the server side of a channel. |
92 // | 92 // |
93 // If the kTestingChannelID flag is specified on the command line then | 93 // If the kTestingChannelID flag is specified on the command line then |
94 // a named FIFO is used as the channel transport mechanism rather than a | 94 // a named FIFO is used as the channel transport mechanism rather than a |
95 // socketpair() in which case this method returns -1. | 95 // socketpair() in which case this method returns -1. |
96 int GetClientFileDescriptor() const; | 96 int GetClientFileDescriptor() const; |
97 #endif // defined(OS_POSIX) | 97 #endif // defined(OS_POSIX) |
98 | 98 |
| 99 protected: |
| 100 // Used in Chrome by the TestSink to provide a dummy channel implementation |
| 101 // for testing. TestSink overrides the "interesting" functions in Channel so |
| 102 // no actual implementation is needed. This will cause un-overridden calls to |
| 103 // segfault. Do not use outside of test code! |
| 104 Channel() : channel_impl_(0) { } |
| 105 |
99 private: | 106 private: |
100 // PIMPL to which all channel calls are delegated. | 107 // PIMPL to which all channel calls are delegated. |
101 class ChannelImpl; | 108 class ChannelImpl; |
102 ChannelImpl *channel_impl_; | 109 ChannelImpl *channel_impl_; |
103 | 110 |
104 // The Hello message is internal to the Channel class. It is sent | 111 // The Hello message is internal to the Channel class. It is sent |
105 // by the peer when the channel is connected. The message contains | 112 // by the peer when the channel is connected. The message contains |
106 // just the process id (pid). The message has a special routing_id | 113 // just the process id (pid). The message has a special routing_id |
107 // (MSG_ROUTING_NONE) and type (HELLO_MESSAGE_TYPE). | 114 // (MSG_ROUTING_NONE) and type (HELLO_MESSAGE_TYPE). |
108 enum { | 115 enum { |
109 HELLO_MESSAGE_TYPE = kuint16max // Maximum value of message type (uint16), | 116 HELLO_MESSAGE_TYPE = kuint16max // Maximum value of message type (uint16), |
110 // to avoid conflicting with normal | 117 // to avoid conflicting with normal |
111 // message types, which are enumeration | 118 // message types, which are enumeration |
112 // constants starting from 0. | 119 // constants starting from 0. |
113 }; | 120 }; |
114 }; | 121 }; |
115 | 122 |
116 } // namespace IPC | 123 } // namespace IPC |
117 | 124 |
118 #endif // IPC_IPC_CHANNEL_H_ | 125 #endif // IPC_IPC_CHANNEL_H_ |
OLD | NEW |