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

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

Issue 818193005: Removing HTTP Auth related command-line flags "--enable-auth-negotiate-port" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing Build errors Created 5 years, 11 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1707 matching lines...) Expand 10 before | Expand all | Expand 10 after
1718 #endif 1718 #endif
1719 1719
1720 // String that lists supported HTTP authentication schemes. 1720 // String that lists supported HTTP authentication schemes.
1721 const char kAuthSchemes[] = "auth.schemes"; 1721 const char kAuthSchemes[] = "auth.schemes";
1722 1722
1723 // Boolean that specifies whether to disable CNAME lookups when generating 1723 // Boolean that specifies whether to disable CNAME lookups when generating
1724 // Kerberos SPN. 1724 // Kerberos SPN.
1725 const char kDisableAuthNegotiateCnameLookup[] = 1725 const char kDisableAuthNegotiateCnameLookup[] =
1726 "auth.disable_negotiate_cname_lookup"; 1726 "auth.disable_negotiate_cname_lookup";
1727 1727
1728 // Boolean that specifies whether to include the port in a generated Kerberos
1729 // SPN.
1730 const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port";
1731
1732 // Whitelist containing servers for which Integrated Authentication is enabled. 1728 // Whitelist containing servers for which Integrated Authentication is enabled.
1733 const char kAuthServerWhitelist[] = "auth.server_whitelist"; 1729 const char kAuthServerWhitelist[] = "auth.server_whitelist";
1734 1730
1735 // Whitelist containing servers Chrome is allowed to do Kerberos delegation 1731 // Whitelist containing servers Chrome is allowed to do Kerberos delegation
1736 // with. 1732 // with.
1737 const char kAuthNegotiateDelegateWhitelist[] = 1733 const char kAuthNegotiateDelegateWhitelist[] =
1738 "auth.negotiate_delegate_whitelist"; 1734 "auth.negotiate_delegate_whitelist";
1739 1735
1740 // String that specifies the name of a custom GSSAPI library to load. 1736 // String that specifies the name of a custom GSSAPI library to load.
1741 const char kGSSAPILibraryName[] = "auth.gssapi_library_name"; 1737 const char kGSSAPILibraryName[] = "auth.gssapi_library_name";
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
2278 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; 2274 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes";
2279 2275
2280 // Last user's interaction with the password bubble. 2276 // Last user's interaction with the password bubble.
2281 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; 2277 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions";
2282 2278
2283 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. 2279 // Boolean that indicates whether elevation is needed to recover Chrome upgrade.
2284 const char kRecoveryComponentNeedsElevation[] = 2280 const char kRecoveryComponentNeedsElevation[] =
2285 "recovery_component.needs_elevation"; 2281 "recovery_component.needs_elevation";
2286 2282
2287 } // namespace prefs 2283 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698