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

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

Issue 6871019: Enable (optional) blocking of webrequests in case a PAC script cannot be fetched or is invalid. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments Created 9 years, 8 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 side-by-side diff with in-line comments
Download patch
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 cc41521980755f716236e2a827be96c964343126..e2849131858d855abd5d41c9131d2310a37986ea 100644
--- a/chrome/browser/policy/configuration_policy_pref_store.cc
+++ b/chrome/browser/policy/configuration_policy_pref_store.cc
@@ -683,7 +683,7 @@ void ConfigurationPolicyPrefKeeper::ApplyProxySettings() {
std::string pac_url;
proxy_policies_[kPolicyProxyPacUrl]->GetAsString(&pac_url);
prefs_.SetValue(prefs::kProxy,
- ProxyConfigDictionary::CreatePacScript(pac_url));
+ ProxyConfigDictionary::CreatePacScript(pac_url, false));
break;
}
case ProxyPrefs::MODE_FIXED_SERVERS: {

Powered by Google App Engine
This is Rietveld 408576698