summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/URLEncoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWeb/URLEncoder.h')
-rw-r--r--Userland/Libraries/LibWeb/URLEncoder.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/Userland/Libraries/LibWeb/URLEncoder.h b/Userland/Libraries/LibWeb/URLEncoder.h
deleted file mode 100644
index 5bd004f560..0000000000
--- a/Userland/Libraries/LibWeb/URLEncoder.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Copyright (c) 2020, the SerenityOS developers.
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
-
-#pragma once
-
-#include <AK/String.h>
-#include <AK/Vector.h>
-
-namespace Web {
-
-struct URLQueryParam {
- String name;
- String value;
-};
-
-String urlencode(const Vector<URLQueryParam>&, URL::PercentEncodeSet);
-
-}