From 58fda93ea2b75e89e9bf08c11829612e21b73c6a Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Mon, 18 Jul 2022 08:09:11 +0100 Subject: [PATCH] LibWeb: Add Blob to Fetch's Body::SourceType variant --- Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Bodies.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Bodies.h b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Bodies.h index 9759daf49f..4665ba09e4 100644 --- a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Bodies.h +++ b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Bodies.h @@ -8,15 +8,17 @@ #include #include +#include #include #include +#include namespace Web::Fetch { // https://fetch.spec.whatwg.org/#concept-body class Body final { public: - using SourceType = Variant; + using SourceType = Variant>; struct ReadableStreamDummy { };