diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchParams.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchParams.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchParams.h b/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchParams.h index 3ef35f1388..fc1e49aa77 100644 --- a/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchParams.h +++ b/Userland/Libraries/LibWeb/Fetch/Infrastructure/FetchParams.h @@ -14,6 +14,7 @@ #include <LibWeb/Fetch/Infrastructure/FetchController.h> #include <LibWeb/Fetch/Infrastructure/FetchTimingInfo.h> #include <LibWeb/Fetch/Infrastructure/HTTP/Requests.h> +#include <LibWeb/Fetch/Infrastructure/Task.h> namespace Web::Fetch::Infrastructure { @@ -22,9 +23,6 @@ class FetchParams : public JS::Cell { JS_CELL(FetchParams, JS::Cell); public: - // FIXME: 'or a parallel queue' - using TaskDestination = Variant<Empty, JS::NonnullGCPtr<JS::Object>>; - struct PreloadedResponseCandidatePendingTag { }; using PreloadedResponseCandidate = Variant<Empty, PreloadedResponseCandidatePendingTag, JS::NonnullGCPtr<Response>>; |