blob: 4adfc7465ca232de45284951654bddeba4455d43 [file] [log] [blame]
aberentbba302d2015-12-03 10:20:191// 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
aberentbba302d2015-12-03 10:20:195#include "net/http/http_auth_scheme.h"
6
7namespace net {
8const char kBasicAuthScheme[] = "basic";
9const char kDigestAuthScheme[] = "digest";
10const char kNtlmAuthScheme[] = "ntlm";
11const char kNegotiateAuthScheme[] = "negotiate";
12const char kSpdyProxyAuthScheme[] = "spdyproxy";
13const char kMockAuthScheme[] = "mock";
14} // namespace net