1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:57:45 +00:00

LibWeb: Remove ImageLoader and ImageResource

The old image loading mechanism is no longer used, as everything has
been moved on top of HTML::ImageRequest! :^)
This commit is contained in:
Andreas Kling 2023-06-11 16:09:46 +02:00
parent a553fe055b
commit 2ebb3639aa
7 changed files with 0 additions and 465 deletions

View file

@ -29,7 +29,6 @@ class Resource : public RefCounted<Resource> {
public:
enum class Type {
Generic,
Image,
};
static NonnullRefPtr<Resource> create(Badge<ResourceLoader>, Type, LoadRequest const&);