blob: 850b481d51ab3b1c48ff58ea76ace52571cab49f [file] [log] [blame]
// 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