HomeSort by relevance Sort by last modified time
    Searched defs:ChannelProxy (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/ipc/
ipc_channel_proxy.cc 23 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 void ChannelProxy::MessageFilter::OnDestruct() const {
43 ChannelProxy::MessageFilter::~MessageFilter() {}
47 ChannelProxy::Context::Context(Listener* listener
    [all...]
ipc_channel_proxy.h 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 OnMessageReceive
    [all...]

Completed in 129 milliseconds