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

  /external/chromium_org/content/common/
message_router.h 12 // The MessageRouter handles all incoming messages sent to it by routing them
15 // process, the MessageRouter has the notion of pending IDs for listeners that
23 // The MessageRouter supports the IPC::Sender interface for outgoing messages,
25 // MessageRouter is intended to provide that if appropriate.
27 // The MessageRouter can be used as a concrete class provided its Send method
32 class MessageRouter : public IPC::Listener, public IPC::Sender {
34 MessageRouter();
35 virtual ~MessageRouter();
62 DISALLOW_COPY_AND_ASSIGN(MessageRouter);
message_router.cc 11 MessageRouter::MessageRouter() {
14 MessageRouter::~MessageRouter() {
17 bool MessageRouter::OnControlMessageReceived(const IPC::Message& msg) {
23 bool MessageRouter::Send(IPC::Message* msg) {
29 bool MessageRouter::AddRoute(int32 routing_id, IPC::Listener* listener) {
38 void MessageRouter::RemoveRoute(int32 routing_id) {
42 bool MessageRouter::OnMessageReceived(const IPC::Message& msg) {
49 bool MessageRouter::RouteMessage(const IPC::Message& msg)
    [all...]

Completed in 62 milliseconds