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

  /external/libchrome/mojo/core/
user_message_impl.h 27 // UserMessageImpl is the sole implementation of ports::UserMessage used to
30 // A UserMessageImpl may be either serialized or unserialized. Unserialized
33 class MOJO_SYSTEM_IMPL_EXPORT UserMessageImpl : public ports::UserMessage {
49 ~UserMessageImpl() override;
51 // Creates a new ports::UserMessageEvent with an attached UserMessageImpl.
55 // UserMessageImpl. May fail iff one or more |dispatchers| fails to serialize
66 // Creates a new UserMessageImpl from an existing serialized message buffer
70 static std::unique_ptr<UserMessageImpl> CreateFromChannelMessage(
77 // |event|. |event| must have a serialized UserMessageImpl instance attached.
153 // Creates an unserialized UserMessageImpl with an associated |context| an
    [all...]
user_message_impl.cc 308 const ports::UserMessage::TypeInfo UserMessageImpl::kUserMessageTypeInfo = {};
310 UserMessageImpl::~UserMessageImpl() {
341 UserMessageImpl::CreateEventForNewMessage() {
344 base::WrapUnique(new UserMessageImpl(message_event.get())));
349 MojoResult UserMessageImpl::CreateEventForNewSerializedMessage(
365 new UserMessageImpl(event.get(), std::move(channel_message), header,
372 std::unique_ptr<UserMessageImpl> UserMessageImpl::CreateFromChannelMessage(
389 new UserMessageImpl(message_event, std::move(channel_message), header
    [all...]

Completed in 405 milliseconds