Chromium Code Reviews

Unified Diff: chrome/browser/policy/configuration_policy_pref_store.cc

Issue 6021010: Fix setting a proxy configuration via policy that specifies a .pac file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add doc tweak to soften wording Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: chrome/browser/policy/configuration_policy_pref_store.cc
diff --git a/chrome/browser/policy/configuration_policy_pref_store.cc b/chrome/browser/policy/configuration_policy_pref_store.cc
index 23e65106c3adebf2a9f45feb3ca8c79b8789af5d..6aac1205fa43ad08156ff81ba9be7dce36556705 100644
--- a/chrome/browser/policy/configuration_policy_pref_store.cc
+++ b/chrome/browser/policy/configuration_policy_pref_store.cc
@@ -535,16 +535,16 @@ bool ConfigurationPolicyPrefKeeper::CheckProxySettings() {
}
break;
case kPolicyManuallyConfiguredProxyMode:
- if (!server) {
+ if (server && pac_url) {
LOG(WARNING) << "A centrally-administered policy dictates that the"
- << " system proxy settings should use fixed proxy servers"
- << " without specifying which ones.";
+ << " system proxy settings should use both a fixed"
+ << " proxy server and a .pac url.";
return false;
}
- if (pac_url) {
+ if (!server && !pac_url) {
LOG(WARNING) << "A centrally-administered policy dictates that the"
- << " system proxy settings should use fixed proxy servers"
- << " but also specifies a PAC script.";
+ << " system proxy settings should use either a fixed"
+ << " proxy server or a .pac url, but specifies neither.";
return false;
}
break;
@@ -576,11 +576,11 @@ void ConfigurationPolicyPrefKeeper::ApplyProxySettings() {
break;
case kPolicyAutoDetectProxyMode:
mode = ProxyPrefs::MODE_AUTO_DETECT;
- if (HasProxyPolicy(kPolicyProxyPacUrl))
- mode = ProxyPrefs::MODE_PAC_SCRIPT;
break;
case kPolicyManuallyConfiguredProxyMode:
mode = ProxyPrefs::MODE_FIXED_SERVERS;
+ if (HasProxyPolicy(kPolicyProxyPacUrl))
+ mode = ProxyPrefs::MODE_PAC_SCRIPT;
break;
case kPolicyUseSystemProxyMode:
mode = ProxyPrefs::MODE_SYSTEM;
« chrome/app/policy/policy_templates.grd ('K') | « chrome/app/policy/policy_templates.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine