summaryrefslogtreecommitdiff
path: root/chromium/net/http/mock_allow_http_auth_preferences.cc
blob: 850b481d51ab3b1c48ff58ea76ace52571cab49f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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