mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 02:54:54 +03:00
bfd354492e
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. :^)
30 lines
589 B
C++
30 lines
589 B
C++
/*
|
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibJS/Forward.h>
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
class TimeRanges final : public Bindings::PlatformObject {
|
|
WEB_PLATFORM_OBJECT(TimeRanges, Bindings::PlatformObject);
|
|
JS_DECLARE_ALLOCATOR(TimeRanges);
|
|
|
|
public:
|
|
size_t length() const;
|
|
double start(u32 index) const;
|
|
double end(u32 index) const;
|
|
|
|
private:
|
|
explicit TimeRanges(JS::Realm&);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
};
|
|
|
|
}
|