summaryrefslogtreecommitdiffstats
path: root/net/http/http_auth_scheme.cc
blob: 75debb310c9a63a47bbe49ed6bb9b295331243c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "net/base/net_export.h"
#include "net/http/http_auth_scheme.h"

namespace net {
const char kBasicAuthScheme[] = "basic";
const char kDigestAuthScheme[] = "digest";
const char kNtlmAuthScheme[] = "ntlm";
const char kNegotiateAuthScheme[] = "negotiate";
const char kSpdyProxyAuthScheme[] = "spdyproxy";
const char kMockAuthScheme[] = "mock";
}  // namespace net