mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 14:05:15 +00:00
Note that as of this commit, there aren't any such throwers, and the call site in Heap::allocate will drop exceptions on the floor. This commit only serves to change the declaration of the overrides, make sure they return an empty value, and to propagate OOM errors frm their base initialize invocations.
41 lines
1 KiB
C++
41 lines
1 KiB
C++
/*
|
|
* Copyright (c) 2020-2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGfx/Forward.h>
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
class ImageData final : public Bindings::PlatformObject {
|
|
WEB_PLATFORM_OBJECT(ImageData, Bindings::PlatformObject);
|
|
|
|
public:
|
|
static JS::GCPtr<ImageData> create_with_size(JS::Realm&, int width, int height);
|
|
|
|
virtual ~ImageData() override;
|
|
|
|
unsigned width() const;
|
|
unsigned height() const;
|
|
|
|
Gfx::Bitmap& bitmap() { return m_bitmap; }
|
|
Gfx::Bitmap const& bitmap() const { return m_bitmap; }
|
|
|
|
JS::Uint8ClampedArray* data();
|
|
const JS::Uint8ClampedArray* data() const;
|
|
|
|
private:
|
|
ImageData(JS::Realm&, NonnullRefPtr<Gfx::Bitmap>, JS::NonnullGCPtr<JS::Uint8ClampedArray>);
|
|
|
|
virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
NonnullRefPtr<Gfx::Bitmap> m_bitmap;
|
|
JS::NonnullGCPtr<JS::Uint8ClampedArray> m_data;
|
|
};
|
|
|
|
}
|