From 7955cb14fbd1e0f200116f5c6c03eb70d3053a14 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Fri, 10 Feb 2023 08:29:14 -0500 Subject: [PATCH] LibWeb: Add missing GCPtr.h includes to Fetch headers These are missing in most Fetch headers, and clangd is (rightfully) very loud about it on a few of these. --- Userland/Libraries/LibWeb/Fetch/Body.h | 1 + Userland/Libraries/LibWeb/Fetch/Fetching/Fetching.h | 1 + Userland/Libraries/LibWeb/Fetch/Fetching/PendingResponse.h | 1 + Userland/Libraries/LibWeb/Fetch/Headers.h | 1 + Userland/Libraries/LibWeb/Fetch/HeadersIterator.h | 1 + .../Libraries/LibWeb/Fetch/Infrastructure/ConnectionTimingInfo.h | 1 + Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchAlgorithms.h | 1 + Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchController.h | 1 + Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchParams.h | 1 + Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchTimingInfo.h | 1 + Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Bodies.h | 1 + Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Headers.h | 1 + Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Requests.h | 1 + Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Responses.h | 1 + Userland/Libraries/LibWeb/Fetch/Request.h | 1 + Userland/Libraries/LibWeb/Fetch/Response.h | 1 + 16 files changed, 16 insertions(+) diff --git a/Userland/Libraries/LibWeb/Fetch/Body.h b/Userland/Libraries/LibWeb/Fetch/Body.h index 993caa2d85..bb88916462 100644 --- a/Userland/Libraries/LibWeb/Fetch/Body.h +++ b/Userland/Libraries/LibWeb/Fetch/Body.h @@ -8,6 +8,7 @@ #include #include +#include #include namespace Web::Fetch { diff --git a/Userland/Libraries/LibWeb/Fetch/Fetching/Fetching.h b/Userland/Libraries/LibWeb/Fetch/Fetching/Fetching.h index 1d4213ce86..ea7a5bc210 100644 --- a/Userland/Libraries/LibWeb/Fetch/Fetching/Fetching.h +++ b/Userland/Libraries/LibWeb/Fetch/Fetching/Fetching.h @@ -8,6 +8,7 @@ #include #include +#include #include namespace Web::Fetch::Fetching { diff --git a/Userland/Libraries/LibWeb/Fetch/Fetching/PendingResponse.h b/Userland/Libraries/LibWeb/Fetch/Fetching/PendingResponse.h index c09ad34d5a..f60d0eeacd 100644 --- a/Userland/Libraries/LibWeb/Fetch/Fetching/PendingResponse.h +++ b/Userland/Libraries/LibWeb/Fetch/Fetching/PendingResponse.h @@ -8,6 +8,7 @@ #include #include +#include #include #include diff --git a/Userland/Libraries/LibWeb/Fetch/Headers.h b/Userland/Libraries/LibWeb/Fetch/Headers.h index d3a582863a..683a4f7327 100644 --- a/Userland/Libraries/LibWeb/Fetch/Headers.h +++ b/Userland/Libraries/LibWeb/Fetch/Headers.h @@ -11,6 +11,7 @@ #include #include #include +#include #include #include #include diff --git a/Userland/Libraries/LibWeb/Fetch/HeadersIterator.h b/Userland/Libraries/LibWeb/Fetch/HeadersIterator.h index e72eba71c3..65a5f514d1 100644 --- a/Userland/Libraries/LibWeb/Fetch/HeadersIterator.h +++ b/Userland/Libraries/LibWeb/Fetch/HeadersIterator.h @@ -6,6 +6,7 @@ #pragma once +#include #include #include diff --git a/Userland/Libraries/LibWeb/Fetch/Infrastructure/ConnectionTimingInfo.h b/Userland/Libraries/LibWeb/Fetch/Infrastructure/ConnectionTimingInfo.h index 9a8686e8f3..52a81c8eff 100644 --- a/Userland/Libraries/LibWeb/Fetch/Infrastructure/ConnectionTimingInfo.h +++ b/Userland/Libraries/LibWeb/Fetch/Infrastructure/ConnectionTimingInfo.h @@ -8,6 +8,7 @@ #include #include +#include #include namespace Web::Fetch::Infrastructure { diff --git a/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchAlgorithms.h b/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchAlgorithms.h index a0583869f0..a73f6e4856 100644 --- a/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchAlgorithms.h +++ b/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchAlgorithms.h @@ -8,6 +8,7 @@ #include #include +#include #include #include diff --git a/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchController.h b/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchController.h index 6392804c29..fd9341c519 100644 --- a/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchController.h +++ b/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchController.h @@ -8,6 +8,7 @@ #include #include +#include #include #include diff --git a/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchParams.h b/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchParams.h index ab5da9ace6..5c2e1f2730 100644 --- a/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchParams.h +++ b/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchParams.h @@ -9,6 +9,7 @@ #include #include #include +#include #include #include #include diff --git a/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchTimingInfo.h b/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchTimingInfo.h index 65621f6de9..ad9698c237 100644 --- a/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchTimingInfo.h +++ b/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchTimingInfo.h @@ -10,6 +10,7 @@ #include #include #include +#include #include #include diff --git a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Bodies.h b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Bodies.h index 7033e759b9..e7bc50d198 100644 --- a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Bodies.h +++ b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Bodies.h @@ -11,6 +11,7 @@ #include #include #include +#include #include #include #include diff --git a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Headers.h b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Headers.h index 4cc096fde6..00192f9a72 100644 --- a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Headers.h +++ b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Headers.h @@ -15,6 +15,7 @@ #include #include #include +#include #include namespace Web::Fetch::Infrastructure { diff --git a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Requests.h b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Requests.h index af13dce514..495cf2f3f7 100644 --- a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Requests.h +++ b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Requests.h @@ -16,6 +16,7 @@ #include #include #include +#include #include #include #include diff --git a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Responses.h b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Responses.h index eee26444f5..63a6197e8f 100644 --- a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Responses.h +++ b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Responses.h @@ -14,6 +14,7 @@ #include #include #include +#include #include #include #include diff --git a/Userland/Libraries/LibWeb/Fetch/Request.h b/Userland/Libraries/LibWeb/Fetch/Request.h index 429ad1be9c..41780a2421 100644 --- a/Userland/Libraries/LibWeb/Fetch/Request.h +++ b/Userland/Libraries/LibWeb/Fetch/Request.h @@ -8,6 +8,7 @@ #include #include +#include #include #include #include diff --git a/Userland/Libraries/LibWeb/Fetch/Response.h b/Userland/Libraries/LibWeb/Fetch/Response.h index 01376d618b..53abf24c39 100644 --- a/Userland/Libraries/LibWeb/Fetch/Response.h +++ b/Userland/Libraries/LibWeb/Fetch/Response.h @@ -8,6 +8,7 @@ #include #include +#include #include #include #include