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

Side by Side Diff: net/base/net_pref_names.cc

Issue 1414313002: Allow dynamic updating of authentication policies (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move //base/prefs references out of net - part 1. 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 unified diff | Download patch
OLDNEW
(Empty)
1 // 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
5 #include "net/base/net_pref_names.h"
6
7 namespace net {
8
9 namespace prefs {
10
11 // String that lists supported HTTP authentication schemes.
12 const char kAuthSchemes[] = "auth.schemes";
13
14 // Boolean that specifies whether to disable CNAME lookups when generating
15 // Kerberos SPN.
16 const char kDisableAuthNegotiateCnameLookup[] =
17 "auth.disable_negotiate_cname_lookup";
18
19 // Boolean that specifies whether to include the port in a generated Kerberos
20 // SPN.
21 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port";
22
23 // Whitelist containing servers for which Integrated Authentication is enabled.
24 const char kAuthServerWhitelist[] = "auth.server_whitelist";
25
26 // Whitelist containing servers Chrome is allowed to do Kerberos delegation
27 // with.
28 const char kAuthNegotiateDelegateWhitelist[] =
29 "auth.negotiate_delegate_whitelist";
30
31 // String that specifies the name of a custom GSSAPI library to load.
32 const char kGSSAPILibraryName[] = "auth.gssapi_library_name";
33
34 #if defined(OS_ANDROID)
35 // String that specifies the Android account type to use for Negotiate
36 // authentication.
37 const char kAuthAndroidNegotiateAccountType[] =
38 "auth.android_negotiate_account_type";
39 #endif
40 } // namespace prefs
41
42 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698