2022-09-19 12:28:46 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/HashMap.h>
|
|
|
|
#include <AK/NonnullRefPtr.h>
|
2022-10-17 11:06:50 +02:00
|
|
|
#include <LibJS/Heap/Cell.h>
|
2022-09-19 12:28:46 +02:00
|
|
|
#include <LibWeb/Forward.h>
|
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
2022-10-17 11:06:50 +02:00
|
|
|
class BrowsingContextGroup final : public JS::Cell {
|
|
|
|
JS_CELL(BrowsingContextGroup, JS::Cell);
|
|
|
|
|
2022-09-19 12:28:46 +02:00
|
|
|
public:
|
2022-10-17 11:06:50 +02:00
|
|
|
static JS::NonnullGCPtr<BrowsingContextGroup> create_a_new_browsing_context_group(Page&);
|
2022-09-19 12:28:46 +02:00
|
|
|
~BrowsingContextGroup();
|
|
|
|
|
|
|
|
Page* page() { return m_page; }
|
|
|
|
Page const* page() const { return m_page; }
|
|
|
|
|
|
|
|
auto& browsing_context_set() { return m_browsing_context_set; }
|
|
|
|
auto const& browsing_context_set() const { return m_browsing_context_set; }
|
|
|
|
|
|
|
|
void append(BrowsingContext&);
|
|
|
|
|
|
|
|
private:
|
|
|
|
explicit BrowsingContextGroup(Web::Page&);
|
|
|
|
|
2022-10-17 11:06:50 +02:00
|
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
|
2022-09-19 12:28:46 +02:00
|
|
|
// https://html.spec.whatwg.org/multipage/browsers.html#browsing-context-group-set
|
2022-10-17 11:06:50 +02:00
|
|
|
OrderedHashTable<BrowsingContext*> m_browsing_context_set;
|
2022-09-19 12:28:46 +02:00
|
|
|
|
|
|
|
WeakPtr<Page> m_page;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|