mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-12-01 17:56:10 +03:00
25 lines
747 B
C++
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
|