#ifndef COMPONENTS_CAST_MESSAGE_PORT_CAST_MESSAGE_PORT_CAST_H_
#define COMPONENTS_CAST_MESSAGE_PORT_CAST_MESSAGE_PORT_CAST_H_
#include <string_view>
#include "base/memory/raw_ptr.h"
#include "components/cast/message_port/message_port.h"
#include "third_party/blink/public/common/messaging/web_message_port.h"
namespace blink {
class MessagePortDescriptor;
}
namespace cast_api_bindings {
class MessagePortCast : public cast_api_bindings::MessagePort,
public blink::WebMessagePort::MessageReceiver { … };
}
#endif