Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(314)

Unified Diff: net/http/http_auth.h

Issue 1414313002: Allow dynamic updating of authentication policies (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix missing Chromeos includes Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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:

Powered by Google App Engine
This is Rietveld 408576698