1 // Copyright 2015 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 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 15