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
commit 4f02bac39c
Notes: sideshowbarker 2024-07-17 18:06:52 +09:00

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 {