LibWeb: Add missing includes to SharedResourceRequest

Missing Cell.h and Ptr.h were causing a bunch of clangd errors. Also
remove unused includes while we're here.
This commit is contained in:
Timothy Flynn 2025-08-08 09:05:39 -04:00 committed by Tim Ledbetter
commit 9e474a4eb0
Notes: github-actions[bot] 2025-08-08 16:49:07 +00:00
2 changed files with 2 additions and 5 deletions

View file

@ -6,11 +6,9 @@
#pragma once
#include <AK/Error.h>
#include <AK/OwnPtr.h>
#include <LibGC/Function.h>
#include <LibGC/Root.h>
#include <LibGfx/Size.h>
#include <LibGC/Ptr.h>
#include <LibJS/Heap/Cell.h>
#include <LibURL/URL.h>
#include <LibWeb/Forward.h>