
With this change, we now have ~1200 CellAllocators across both LibJS and LibWeb in a normal WebContent instance. This gives us a minimum heap size of 4.7 MiB in the scenario where we only have one cell allocated per type. Of course, in practice there will be many more of each type, so the effective overhead is quite a bit smaller than that in practice. I left a few types unconverted to this mechanism because I got tired of doing this. :^)
35 lines
984 B
C++
35 lines
984 B
C++
/*
|
|
* Copyright (c) 2023, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Bindings/MainThreadVM.h>
|
|
#include <LibWeb/HTML/AbstractBrowsingContext.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
class RemoteBrowsingContext final
|
|
: public AbstractBrowsingContext
|
|
, public Weakable<RemoteBrowsingContext> {
|
|
JS_CELL(RemoteBrowsingContext, AbstractBrowsingContext);
|
|
JS_DECLARE_ALLOCATOR(RemoteBrowsingContext);
|
|
|
|
public:
|
|
static JS::NonnullGCPtr<RemoteBrowsingContext> create_a_new_remote_browsing_context(String handle);
|
|
|
|
virtual HTML::WindowProxy* window_proxy() override;
|
|
virtual HTML::WindowProxy const* window_proxy() const override;
|
|
|
|
virtual String const& window_handle() const override { return m_window_handle; }
|
|
virtual void set_window_handle(String handle) override { m_window_handle = handle; }
|
|
|
|
private:
|
|
explicit RemoteBrowsingContext(String);
|
|
|
|
String m_window_handle;
|
|
};
|
|
|
|
}
|