diff options
author | Ali Mohammad Pur <ali.mpfard@gmail.com> | 2022-04-07 21:10:33 +0430 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-04-09 12:21:43 +0200 |
commit | 45867435c4b25beb77e1ff0a6072e2bbe27069f5 (patch) | |
tree | e3d58789374bf620e29da8f2f67a1059ead8cd97 /Userland/Applications/Browser | |
parent | cd9d7401073e8d0307d4e656e5c926936759e38e (diff) | |
download | serenity-45867435c4b25beb77e1ff0a6072e2bbe27069f5.zip |
RequestServer+LibProtocol: Allow users to specify a per-request proxy
Diffstat (limited to 'Userland/Applications/Browser')
-rw-r--r-- | Userland/Applications/Browser/DownloadWidget.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Userland/Applications/Browser/DownloadWidget.cpp b/Userland/Applications/Browser/DownloadWidget.cpp index 3b173ce0f2..cfd2c82f8b 100644 --- a/Userland/Applications/Browser/DownloadWidget.cpp +++ b/Userland/Applications/Browser/DownloadWidget.cpp @@ -8,7 +8,7 @@ #include "DownloadWidget.h" #include <AK/NumberFormat.h> #include <AK/StringBuilder.h> -#include <LibConfig/Client.h> +#include <LibCore/Proxy.h> #include <LibCore/StandardPaths.h> #include <LibCore/Stream.h> #include <LibDesktop/Launcher.h> @@ -20,9 +20,11 @@ #include <LibGUI/MessageBox.h> #include <LibGUI/Progressbar.h> #include <LibGUI/Window.h> -#include <LibProtocol/RequestClient.h> #include <LibWeb/Loader/ResourceLoader.h> +#include <LibConfig/Client.h> +#include <LibProtocol/RequestClient.h> + namespace Browser { DownloadWidget::DownloadWidget(const URL& url) |