Chromium Code Reviews| Index: net/http/http_auth.h |
| diff --git a/net/http/http_auth.h b/net/http/http_auth.h |
| index 5a2c7ac6606e3353f4d32ab37a96b78760ba8a06..dbe6e630686f1ca0423672045eb2a9a646eef3fe 100644 |
| --- a/net/http/http_auth.h |
| +++ b/net/http/http_auth.h |
| @@ -22,6 +22,14 @@ class HttpAuthHandler; |
| class HttpAuthHandlerFactory; |
| class HttpResponseHeaders; |
| +// Auth scheme names. |
| +const char kBasicAuthScheme[] = "basic"; |
|
asanka
2015/11/04 16:05:44
These constants have internal linkage (see http://
aberent
2015/11/06 13:57:34
Moved to separate header and source files. As disc
|
| +const char kDigestAuthScheme[] = "digest"; |
| +const char kNtlmAuthScheme[] = "ntlm"; |
| +const char kNegotiateAuthScheme[] = "negotiate"; |
| +const char kSpdyProxyAuthScheme[] = "spdyproxy"; |
| +const char kMockAuthScheme[] = "mock"; |
| + |
| // Utility class for http authentication. |
| class NET_EXPORT_PRIVATE HttpAuth { |
| public: |