diff options
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_ |