Home | History | Annotate | Download | only in ipc

Lines Matching defs:ChannelProxy

28 // IPC::ChannelProxy
33 // your main thread (the thread on which the IPC::ChannelProxy is created).
35 // The API for an IPC::ChannelProxy is very similar to that of an IPC::Channel.
36 // When you send a message to an IPC::ChannelProxy, the message is routed to
45 // An IPC::ChannelProxy can have a MessageFilter associated with it, which will
47 // the consumer of IPC::ChannelProxy the ability to respond to incoming
52 // The consumer of IPC::ChannelProxy is responsible for allocating the Thread
55 class IPC_EXPORT ChannelProxy : public Sender, public base::NonThreadSafe {
72 // the ChannelProxy and when the Channel is closing. After a filter is
123 // the thread that creates the ChannelProxy. The filter's OnMessageReceived
129 ChannelProxy(const IPC::ChannelHandle& channel_handle,
134 virtual ~ChannelProxy();
147 // WARNING: The MessageFilter object held by the ChannelProxy is also
159 // Ordinarily, messages sent to the ChannelProxy are routed to the matching
191 ChannelProxy(Context* context);
227 // Called on the consumers thread when the ChannelProxy is closed. At that
233 friend class ChannelProxy;