Chromium Code Reviews| Index: net/http/http_auth_scheme.h |
| diff --git a/net/http/http_auth_scheme.h b/net/http/http_auth_scheme.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..98e17857a999e60823ae005da76e603ba15d0f2e |
| --- /dev/null |
| +++ b/net/http/http_auth_scheme.h |
| @@ -0,0 +1,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 { |
|
cbentzel
2015/12/01 20:56:16
Nit: Perhaps the Scheme enum should be at the same
aberent
2015/12/02 13:30:19
Probably a good idea, but I would prefer not to in
|
| +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_ |