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

/external/chromium_org/ipc/
H A Dipc_channel_proxy.h31 // IPC::ChannelProxy
36 // your main thread (the thread on which the IPC::ChannelProxy is created).
38 // The API for an IPC::ChannelProxy is very similar to that of an IPC::Channel.
39 // When you send a message to an IPC::ChannelProxy, the message is routed to
48 // An IPC::ChannelProxy can have a MessageFilter associated with it, which will
50 // the consumer of IPC::ChannelProxy the ability to respond to incoming
55 // The consumer of IPC::ChannelProxy is responsible for allocating the Thread
58 class IPC_EXPORT ChannelProxy : public Sender, public base::NonThreadSafe { class in namespace:IPC
62 // the thread that creates the ChannelProxy. The filter's OnMessageReceived
68 static scoped_ptr<ChannelProxy> Creat
[all...]
H A Dipc_channel_proxy.cc25 ChannelProxy::Context::Context(
38 // 1) Create the ChannelProxy on a different thread, or
41 // basically works, but is outside the intent of ChannelProxy. This support
46 ChannelProxy::Context::~Context() {
49 void ChannelProxy::Context::ClearIPCTaskRunner() {
53 void ChannelProxy::Context::CreateChannel(scoped_ptr<ChannelFactory> factory) {
59 bool ChannelProxy::Context::TryFilters(const Message& message) {
82 bool ChannelProxy::Context::OnMessageReceived(const Message& message) {
90 bool ChannelProxy::Context::OnMessageReceivedNoFilter(const Message& message) {
97 void ChannelProxy
329 ChannelProxy::ChannelProxy(Context* context) function in class:IPC::ChannelProxy
334 ChannelProxy::ChannelProxy( function in class:IPC::ChannelProxy
[all...]

Completed in 193 milliseconds