summaryrefslogtreecommitdiffstats
path: root/net/http/http_auth_scheme.h
blob: 98e17857a999e60823ae005da76e603ba15d0f2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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.

#ifndef NET_HTTP_HTTP_AUTH_SCHEME_H_
#define NET_HTTP_HTTP_AUTH_SCHEME_H_

namespace net {
NET_EXPORT extern const char kBasicAuthScheme[];
NET_EXPORT extern const char kDigestAuthScheme[];
NET_EXPORT extern const char kNtlmAuthScheme[];
NET_EXPORT extern const char kNegotiateAuthScheme[];
NET_EXPORT extern const char kSpdyProxyAuthScheme[];
NET_EXPORT extern const char kMockAuthScheme[];
}  // namespace net

#endif  // NET_HTTP_HTTP_AUTH_SCHEME_H_