naiveproxy/net/http/http_auth_scheme.h

20 lines
653 B
C
Raw Normal View History

2018-08-15 01:19:20 +03:00
// 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_
#include "net/base/net_export.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_