Searched defs:ChannelProxy (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/ipc/
H A Dipc_channel_proxy.h28 // 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 { class in namespace:IPC
71 // the ChannelProxy and when the Channel is closing. After a filter is
100 // the thread that creates the ChannelProxy
[all...]
H A Dipc_channel_proxy.cc23 ChannelProxy::MessageFilter::MessageFilter() {}
25 void ChannelProxy::MessageFilter::OnFilterAdded(Channel* channel) {}
27 void ChannelProxy::MessageFilter::OnFilterRemoved() {}
29 void ChannelProxy::MessageFilter::OnChannelConnected(int32 peer_pid) {}
31 void ChannelProxy::MessageFilter::OnChannelError() {}
33 void ChannelProxy::MessageFilter::OnChannelClosing() {}
35 bool ChannelProxy::MessageFilter::OnMessageReceived(const Message& message) {
39 ChannelProxy::MessageFilter::~MessageFilter() {}
43 ChannelProxy::Context::Context(Listener* listener,
53 ChannelProxy
286 ChannelProxy::ChannelProxy(const IPC::ChannelHandle& channel_handle, function in class:IPC::ChannelProxy
295 ChannelProxy::ChannelProxy(Context* context) function in class:IPC::ChannelProxy
[all...]

Completed in 87 milliseconds