ladybird/Userland/Libraries/LibWeb/Loader/ProxyMappings.h
Shannon Booth 9ce8189f21 Everywhere: Use unqualified AK::URL
Now possible in LibWeb now that there is no longer a Web::URL.
2024-02-25 08:54:31 +01:00

31 lines
620 B
C++

/*
* Copyright (c) 2022, Ali Mohammad Pur <mpfard@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/HashMap.h>
#include <AK/URL.h>
#include <AK/Vector.h>
#include <LibCore/Proxy.h>
namespace Web {
class ProxyMappings {
public:
static ProxyMappings& the();
Core::ProxyData proxy_for_url(URL const&) const;
void set_mappings(Vector<ByteString> proxies, OrderedHashMap<ByteString, size_t> mappings);
private:
ProxyMappings() = default;
~ProxyMappings() = default;
Vector<ByteString> m_proxies;
OrderedHashMap<ByteString, size_t> m_mappings;
};
}