aberent | bba302d | 2015-12-03 10:20:19 | [diff] [blame] | 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 | |
aberent | bba302d | 2015-12-03 10:20:19 | [diff] [blame] | 5 | #include "net/http/http_auth_scheme.h" |
| 6 | |
| 7 | namespace net { |
| 8 | const char kBasicAuthScheme[] = "basic"; |
| 9 | const char kDigestAuthScheme[] = "digest"; |
| 10 | const char kNtlmAuthScheme[] = "ntlm"; |
| 11 | const char kNegotiateAuthScheme[] = "negotiate"; |
| 12 | const char kSpdyProxyAuthScheme[] = "spdyproxy"; |
| 13 | const char kMockAuthScheme[] = "mock"; |
| 14 | } // namespace net |