// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "mojo/public/cpp/bindings/lib/send_message_helper.h" #include <cstring> #include <tuple> #include "base/trace_event/typed_macros.h" #include "mojo/public/cpp/bindings/message.h" namespace mojo { namespace internal { void SendMojoMessage(MessageReceiver& receiver, Message& message) { … } void SendMojoMessage(MessageReceiverWithResponder& receiver, Message& message, std::unique_ptr<MessageReceiver> responder) { … } } // namespace internal } // namespace mojo