Home | History | Annotate | Download | only in bindings

Lines Matching defs:MessageReceiver

120 class MessageReceiver {
122 virtual ~MessageReceiver() {}
130 class MessageReceiverWithResponder : public MessageReceiver {
134 // A variant on Accept that registers a MessageReceiver (known as the
144 // std::unique_ptr<MessageReceiver>.
145 virtual bool AcceptWithResponder(Message* message, MessageReceiver* responder)
149 // A MessageReceiver that is also able to provide status about the state
152 class MessageReceiverWithStatus : public MessageReceiver {
156 // Returns |true| if this MessageReceiver is currently bound to a MessagePipe,
160 // DCHECKs if this MessageReceiver is currently bound to a MessagePipe, the
169 class MessageReceiverWithResponderStatus : public MessageReceiver {
183 // std::unique_ptr<MessageReceiver>.