blob: 78e31a8a08a3edf7d9329a3d1de1917e166c4bef [file] [log] [blame]
// Copyright 2015 The Chromium Authors
// 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 {
inline constexpr char kBasicAuthScheme[] = "basic";
inline constexpr char kDigestAuthScheme[] = "digest";
inline constexpr char kNtlmAuthScheme[] = "ntlm";
inline constexpr char kNegotiateAuthScheme[] = "negotiate";
inline constexpr char kSpdyProxyAuthScheme[] = "spdyproxy";
inline constexpr char kMockAuthScheme[] = "mock";
} // namespace net
#endif // NET_HTTP_HTTP_AUTH_SCHEME_H_