// 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 "components/cast/message_port/cast_core/message_connector.h" #include "base/check_op.h" #include "components/cast/message_port/cast_core/message_port_core.h" namespace cast_api_bindings { MessageConnector::MessageConnector() : … { … } MessageConnector::MessageConnector(uint32_t channel_id) : … { … } MessageConnector::~MessageConnector() { … } void MessageConnector::SetPeer(MessageConnector* other) { … } void MessageConnector::DetachPeer() { … } void MessageConnector::Start() { … } } // namespace cast_api_bindings