diff options
author | Max Wipfli <mail@maxwipfli.ch> | 2021-05-25 14:40:50 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-01 09:28:05 +0200 |
commit | 0d41a7d39aebde99bed69a54022e2036228f8af8 (patch) | |
tree | 8842115c3f24499c0c77cf3162f5527c1bcac2e9 /Userland/Libraries | |
parent | a603e69599c6e2b7100711f2760a1c97d4af13dd (diff) | |
download | serenity-0d41a7d39aebde99bed69a54022e2036228f8af8.zip |
AK: Remove URLParser
This removes URLParser, because its two exposed functions, urlencode()
and urldecode(), have been superseded by URL::percent_encode() and
URL::percent_decode(). This is in preparation for the introduction of a
new URL parser.
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibWeb/OutOfProcessWebView.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/OutOfProcessWebView.cpp b/Userland/Libraries/LibWeb/OutOfProcessWebView.cpp index a3a76b7266..81b878099d 100644 --- a/Userland/Libraries/LibWeb/OutOfProcessWebView.cpp +++ b/Userland/Libraries/LibWeb/OutOfProcessWebView.cpp @@ -7,7 +7,6 @@ #include "OutOfProcessWebView.h" #include "WebContentClient.h" #include <AK/String.h> -#include <AK/URLParser.h> #include <LibGUI/Application.h> #include <LibGUI/Desktop.h> #include <LibGUI/InputBox.h> |