// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_CAST_MESSAGE_PORT_MESSAGE_PORT_H_ #define COMPONENTS_CAST_MESSAGE_PORT_MESSAGE_PORT_H_ #include <memory> #include <string_view> #include <vector> #include "components/cast/cast_component_export.h" namespace cast_api_bindings { // HTML5 MessagePort abstraction; allows usage of the platform MessagePort type // without exposing details of the message format, paired port creation, or // transfer of ports. class CAST_COMPONENT_EXPORT MessagePort { … }; } // namespace cast_api_bindings #endif // COMPONENTS_CAST_MESSAGE_PORT_MESSAGE_PORT_H_