1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/policy/file_selection_dialogs_policy_handler.h"
7 #include "base/prefs/pref_value_map.h"
8 #include "base/values.h"
9 #include "chrome/common/pref_names.h"
10 #include "components/policy/core/common/policy_map.h"
11 #include "policy/policy_constants.h"
15 FileSelectionDialogsPolicyHandler::FileSelectionDialogsPolicyHandler()
16 : TypeCheckingPolicyHandler(key::kAllowFileSelectionDialogs
,
17 base::Value::TYPE_BOOLEAN
) {}
19 FileSelectionDialogsPolicyHandler::~FileSelectionDialogsPolicyHandler() {}
21 void FileSelectionDialogsPolicyHandler::ApplyPolicySettings(
22 const PolicyMap
& policies
,
23 PrefValueMap
* prefs
) {
25 const base::Value
* value
= policies
.GetValue(policy_name());
26 if (value
&& value
->GetAsBoolean(&allow_dialogs
)) {
27 prefs
->SetBoolean(prefs::kAllowFileSelectionDialogs
, allow_dialogs
);
28 // Disallow selecting the download location if file dialogs are disabled.
30 prefs
->SetBoolean(prefs::kPromptForDownload
, false);