1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:57:35 +00:00

LibWeb: Add a couple of missing includes to Fetch's Headers.h

This commit is contained in:
Linus Groh 2022-07-14 00:58:10 +01:00 committed by Andreas Kling
parent 2b06e4b98b
commit 4f02bac39c

View file

@ -7,7 +7,12 @@
#pragma once
#include <AK/ByteBuffer.h>
#include <AK/Error.h>
#include <AK/Forward.h>
#include <AK/HashTable.h>
#include <AK/Optional.h>
#include <AK/String.h>
#include <AK/Vector.h>
namespace Web::Fetch {