#include "net/http/http_auth_filter.h"
#include "base/strings/string_util.h"
#include "url/gurl.h"
#include "url/scheme_host_port.h"
namespace net {
HttpAuthFilterAllowlist::HttpAuthFilterAllowlist(
const std::string& server_allowlist) { … }
HttpAuthFilterAllowlist::~HttpAuthFilterAllowlist() = default;
bool HttpAuthFilterAllowlist::AddFilter(const std::string& filter,
HttpAuth::Target target) { … }
bool HttpAuthFilterAllowlist::IsValid(
const url::SchemeHostPort& scheme_host_port,
HttpAuth::Target target) const { … }
void HttpAuthFilterAllowlist::SetAllowlist(
const std::string& server_allowlist) { … }
}