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

@ -4,7 +4,6 @@
* SPDX-License-Identifier: BSD-2-Clause * SPDX-License-Identifier: BSD-2-Clause
*/ */
#include <AK/HashTable.h>
#include <LibGfx/Bitmap.h> #include <LibGfx/Bitmap.h>
#include <LibWeb/Bindings/PrincipalHostDefined.h> #include <LibWeb/Bindings/PrincipalHostDefined.h>
#include <LibWeb/Fetch/Fetching/Fetching.h> #include <LibWeb/Fetch/Fetching/Fetching.h>

View file

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