/* * Copyright (c) 2021-2022, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Web::HTML { // https://html.spec.whatwg.org/multipage/web-messaging.html#message-channels class MessageChannel final : public Bindings::PlatformObject { WEB_PLATFORM_OBJECT(MessageChannel, Bindings::PlatformObject); public: static JS::NonnullGCPtr create_with_global_object(HTML::Window&); virtual ~MessageChannel() override; MessagePort* port1(); MessagePort const* port1() const; MessagePort* port2(); MessagePort const* port2() const; private: explicit MessageChannel(HTML::Window&); virtual void visit_edges(Cell::Visitor&) override; JS::GCPtr m_port1; JS::GCPtr m_port2; }; }