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

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: 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 58d18508aabe05cd888ded730603432a6711b446..a958acd6ec3dc31024cfe8456dff6da4879bb960 100644
--- a/chrome/browser/policy/configuration_policy_pref_store.cc
+++ b/chrome/browser/policy/configuration_policy_pref_store.cc
@@ -679,7 +679,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