diff options
author | danno@chromium.org <danno@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-09 16:15:48 +0000 |
---|---|---|
committer | danno@chromium.org <danno@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-09 16:15:48 +0000 |
commit | b94a654e04d9b22381cc22c6dfb9704147b8311f (patch) | |
tree | 18a846b033bb5e45487994acd7fc664428f90429 /chrome/common | |
parent | 3f078094f9882370002c9064a9d03299b9b6abde (diff) | |
download | chromium_src-b94a654e04d9b22381cc22c6dfb9704147b8311f.zip chromium_src-b94a654e04d9b22381cc22c6dfb9704147b8311f.tar.gz chromium_src-b94a654e04d9b22381cc22c6dfb9704147b8311f.tar.bz2 |
Revert 65535 - Group Policy support for HTTP authentication
BUG=53625
TEST=ConfigurationPolicyPrefStore*
Review URL: http://codereview.chromium.org/3517018
Patch from Jakob Kummerow <jkummerow@google.com>.
TBR=danno@chromium.org
Review URL: http://codereview.chromium.org/4643004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65537 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/policy_constants.cc | 6 | ||||
-rw-r--r-- | chrome/common/policy_constants.h | 5 | ||||
-rw-r--r-- | chrome/common/pref_names.cc | 17 | ||||
-rw-r--r-- | chrome/common/pref_names.h | 6 |
4 files changed, 0 insertions, 34 deletions
diff --git a/chrome/common/policy_constants.cc b/chrome/common/policy_constants.cc index 5eb5998..f56f2b2 100644 --- a/chrome/common/policy_constants.cc +++ b/chrome/common/policy_constants.cc @@ -57,12 +57,6 @@ const char kJavascriptEnabled[] = "JavascriptEnabled"; const char kSavingBrowserHistoryDisabled[] = "SavingBrowserHistoryDisabled"; const char kDeveloperToolsDisabled[] = "DeveloperToolsDisabled"; const char kBlockThirdPartyCookies[] = "BlockThirdPartyCookies"; -const char kAuthSchemes[] = "AuthSchemes"; -const char kDisableAuthNegotiateCnameLookup[] = - "DisableAuthNegotiateCnameLookup"; -const char kEnableAuthNegotiatePort[] = "EnableAuthNegotiatePort"; -const char kAuthServerWhitelist[] = "AuthServerWhitelist"; -const char kAuthNegotiateDelegateWhitelist[] = "AuthNegotiateDelegateWhitelist"; // Chrome Frame specific policy constants const char kChromeFrameRendererSettings[] = "ChromeFrameRendererSettings"; diff --git a/chrome/common/policy_constants.h b/chrome/common/policy_constants.h index e0244e0..1bff710 100644 --- a/chrome/common/policy_constants.h +++ b/chrome/common/policy_constants.h @@ -54,11 +54,6 @@ extern const char kJavascriptEnabled[]; extern const char kSavingBrowserHistoryDisabled[]; extern const char kDeveloperToolsDisabled[]; extern const char kBlockThirdPartyCookies[]; -extern const char kAuthSchemes[]; -extern const char kDisableAuthNegotiateCnameLookup[]; -extern const char kEnableAuthNegotiatePort[]; -extern const char kAuthServerWhitelist[]; -extern const char kAuthNegotiateDelegateWhitelist[]; // Chrome Frame specific policy constants extern const char kChromeFrameRendererSettings[]; diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index d809dfd..9c91912 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -1025,23 +1025,6 @@ const char kRemotingHasSetupCompleted[] = "remoting.has_setup_completed"; // launches. const char kRegisteredBackgroundContents[] = "background_contents.registered"; -// String that lists supported HTTP authentication schemes. -const char kAuthSchemes[] = "auth.schemes"; - -// Boolean that specifies whether to disable CNAME lookups when generating -// Kerberos SPN. -const char kDisableAuthNegotiateCnameLookup[] = - "auth.disable_negotiate_cname_lookup"; -// Boolean that specifies whether to include the port in a generated Kerberos -// SPN. -const char kEnableAuthNegotiatePort[] = "auth.enable_negotiate_port"; -// Whitelist containing servers for which Integrated Authentication is enabled. -const char kAuthServerWhitelist[] = "auth.server_whitelist"; -// Whitelist containing servers Chrome is allowed to do Kerberos delegation -// with. -const char kAuthNegotiateDelegateWhitelist[] = - "auth.negotiate_delegate_whitelist"; - #if defined(OS_CHROMEOS) // Dictionary for transient storage of settings that should go into signed // settings storage before owner has been assigned. diff --git a/chrome/common/pref_names.h b/chrome/common/pref_names.h index 6200467..0d5275c 100644 --- a/chrome/common/pref_names.h +++ b/chrome/common/pref_names.h @@ -400,12 +400,6 @@ extern const char kSignedSettingsTempStorage[]; extern const char kRegisteredBackgroundContents[]; -extern const char kAuthSchemes[]; -extern const char kDisableAuthNegotiateCnameLookup[]; -extern const char kEnableAuthNegotiatePort[]; -extern const char kAuthServerWhitelist[]; -extern const char kAuthNegotiateDelegateWhitelist[]; - } // namespace prefs #endif // CHROME_COMMON_PREF_NAMES_H_ |