diff options
author | danno@chromium.org <danno@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-10 16:19:10 +0000 |
---|---|---|
committer | danno@chromium.org <danno@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-10 16:19:10 +0000 |
commit | bcefe0fd673ffe73a4f1c26669d3b8551314fd89 (patch) | |
tree | 70095b459cc826704247586ab4e8281c944520c5 /chrome/common | |
parent | 51b95502776e23711259722219e3afde9318ee4a (diff) | |
download | chromium_src-bcefe0fd673ffe73a4f1c26669d3b8551314fd89.zip chromium_src-bcefe0fd673ffe73a4f1c26669d3b8551314fd89.tar.gz chromium_src-bcefe0fd673ffe73a4f1c26669d3b8551314fd89.tar.bz2 |
Reland 65535
Group Policy support for HTTP authentication, already had LGTM from http://codereview.chromium.org/3517018.
BUG=53625
TEST=ConfigurationPolicyPrefStore*
Review URL: http://codereview.chromium.org/4733003
Patch from Jakob Kummerow <jkummerow@google.com>.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65664 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, 34 insertions, 0 deletions
diff --git a/chrome/common/policy_constants.cc b/chrome/common/policy_constants.cc index f56f2b2..5eb5998 100644 --- a/chrome/common/policy_constants.cc +++ b/chrome/common/policy_constants.cc @@ -57,6 +57,12 @@ 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 1bff710..e0244e0 100644 --- a/chrome/common/policy_constants.h +++ b/chrome/common/policy_constants.h @@ -54,6 +54,11 @@ 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 9c91912..d809dfd 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -1025,6 +1025,23 @@ 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 0d5275c..6200467 100644 --- a/chrome/common/pref_names.h +++ b/chrome/common/pref_names.h @@ -400,6 +400,12 @@ 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_ |