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

Unified Diff: components/policy/core/browser/configuration_policy_handler.cc

Issue 197013007: Set drive as the default download folder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes test failure and enables a new test Created 6 years, 9 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: components/policy/core/browser/configuration_policy_handler.cc
diff --git a/components/policy/core/browser/configuration_policy_handler.cc b/components/policy/core/browser/configuration_policy_handler.cc
index e290ea69b6d0fe22566cb1d078904fd370461cfd..0a7aea856b6ceda24772dc879fab2da113d37a11 100644
--- a/components/policy/core/browser/configuration_policy_handler.cc
+++ b/components/policy/core/browser/configuration_policy_handler.cc
@@ -48,6 +48,18 @@ ConfigurationPolicyHandler::~ConfigurationPolicyHandler() {
void ConfigurationPolicyHandler::PrepareForDisplaying(
PolicyMap* policies) const {}
+void ConfigurationPolicyHandler::ApplyPolicySettings(
+ const policy::PolicyMap& policies,
+ PrefValueMap* prefs) {
+ NOTREACHED();
+}
+
+void ConfigurationPolicyHandler::ApplyPolicySettingsWithParameters(
+ const PolicyMap& policies,
+ const PolicyHandlerParameters& parameters,
+ PrefValueMap* prefs) {
+ ApplyPolicySettings(policies, prefs);
+}
// TypeCheckingPolicyHandler implementation ------------------------------------

Powered by Google App Engine
This is Rietveld 408576698