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

Side by Side Diff: chrome/common/pref_names.cc

Issue 1128043007: Support Kerberos on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix cbentzel@'s nits Created 5 years, 5 months 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 1668 matching lines...) Expand 10 before | Expand all | Expand 10 after
1679 const char kAuthServerWhitelist[] = "auth.server_whitelist"; 1679 const char kAuthServerWhitelist[] = "auth.server_whitelist";
1680 1680
1681 // Whitelist containing servers Chrome is allowed to do Kerberos delegation 1681 // Whitelist containing servers Chrome is allowed to do Kerberos delegation
1682 // with. 1682 // with.
1683 const char kAuthNegotiateDelegateWhitelist[] = 1683 const char kAuthNegotiateDelegateWhitelist[] =
1684 "auth.negotiate_delegate_whitelist"; 1684 "auth.negotiate_delegate_whitelist";
1685 1685
1686 // String that specifies the name of a custom GSSAPI library to load. 1686 // String that specifies the name of a custom GSSAPI library to load.
1687 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; 1687 const char kGSSAPILibraryName[] = "auth.gssapi_library_name";
1688 1688
1689 // String that specifies the Android account type to use for Negotiate
1690 // authentication.
1691 const char kAuthAndroidNegotiateAccountType[] =
1692 "auth.android_negotiate_account_type";
1693
1689 // Boolean that specifies whether to allow basic auth prompting on cross- 1694 // Boolean that specifies whether to allow basic auth prompting on cross-
1690 // domain sub-content requests. 1695 // domain sub-content requests.
1691 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt"; 1696 const char kAllowCrossOriginAuthPrompt[] = "auth.allow_cross_origin_prompt";
1692 1697
1693 // Boolean that specifies whether the built-in asynchronous DNS client is used. 1698 // Boolean that specifies whether the built-in asynchronous DNS client is used.
1694 const char kBuiltInDnsClientEnabled[] = "async_dns.enabled"; 1699 const char kBuiltInDnsClientEnabled[] = "async_dns.enabled";
1695 1700
1696 // A pref holding the value of the policy used to explicitly allow or deny 1701 // A pref holding the value of the policy used to explicitly allow or deny
1697 // access to audio capture devices. When enabled or not set, the user is 1702 // access to audio capture devices. When enabled or not set, the user is
1698 // prompted for device access. When disabled, access to audio capture devices 1703 // prompted for device access. When disabled, access to audio capture devices
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
2250 "supervised_users.whitelists"; 2255 "supervised_users.whitelists";
2251 2256
2252 #if defined(ENABLE_EXTENSIONS) 2257 #if defined(ENABLE_EXTENSIONS)
2253 // Policy that indicates how to handle animated images. 2258 // Policy that indicates how to handle animated images.
2254 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; 2259 const char kAnimationPolicy[] = "settings.a11y.animation_policy";
2255 #endif 2260 #endif
2256 2261
2257 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; 2262 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload";
2258 2263
2259 } // namespace prefs 2264 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698