naiveproxy/src/net/http/mock_allow_http_auth_preferences.cc
2024-01-19 10:08:33 +08:00

25 lines
747 B
C++

// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/http/mock_allow_http_auth_preferences.h"
#include "build/build_config.h"
namespace net {
MockAllowHttpAuthPreferences::MockAllowHttpAuthPreferences() = default;
MockAllowHttpAuthPreferences::~MockAllowHttpAuthPreferences() = default;
bool MockAllowHttpAuthPreferences::CanUseDefaultCredentials(
const url::SchemeHostPort& auth_scheme_host_port) const {
return true;
}
HttpAuth::DelegationType MockAllowHttpAuthPreferences::GetDelegationType(
const url::SchemeHostPort& auth_scheme_host_port) const {
return HttpAuth::DelegationType::kUnconstrained;
}
} // namespace net