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

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

Issue 2671743002: Separate state of basic and advanced tab in CBD dialog (Closed)
Patch Set: fix .classpath file Created 3 years, 10 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_handler_list_factory.cc
diff --git a/chrome/browser/policy/configuration_policy_handler_list_factory.cc b/chrome/browser/policy/configuration_policy_handler_list_factory.cc
index 8dcd80c079ce683f21c434016675124a47ae2a8b..2906685adb069cade257bc472783b266e7644f35 100644
--- a/chrome/browser/policy/configuration_policy_handler_list_factory.cc
+++ b/chrome/browser/policy/configuration_policy_handler_list_factory.cc
@@ -733,7 +733,8 @@ class BrowsingHistoryPolicyHandler : public TypeCheckingPolicyHandler {
prefs->SetBoolean(
browsing_data::prefs::kDeleteBrowsingHistory, false);
prefs->SetBoolean(
- browsing_data::prefs::kDeleteDownloadHistory, false);
+ browsing_data::prefs::kDeleteBrowsingHistoryBasic, false);
msramek 2017/02/08 10:55:56 Good catch!
dullweber 2017/02/08 23:03:18 thanks, I tried to find all usages of kDeleteBrows
+ prefs->SetBoolean(browsing_data::prefs::kDeleteDownloadHistory, false);
}
}
};

Powered by Google App Engine
This is Rietveld 408576698