http_auth_scheme.h 653 B

12345678910111213141516171819
  1. // Copyright 2015 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef NET_HTTP_HTTP_AUTH_SCHEME_H_
  5. #define NET_HTTP_HTTP_AUTH_SCHEME_H_
  6. #include "net/base/net_export.h"
  7. namespace net {
  8. NET_EXPORT extern const char kBasicAuthScheme[];
  9. NET_EXPORT extern const char kDigestAuthScheme[];
  10. NET_EXPORT extern const char kNtlmAuthScheme[];
  11. NET_EXPORT extern const char kNegotiateAuthScheme[];
  12. NET_EXPORT extern const char kSpdyProxyAuthScheme[];
  13. NET_EXPORT extern const char kMockAuthScheme[];
  14. } // namespace net
  15. #endif // NET_HTTP_HTTP_AUTH_SCHEME_H_