OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 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. |
| 4 |
| 5 #include "chrome/browser/policy/local_sync_policy_handler.h" |
| 6 |
| 7 #include "base/files/file_path.h" |
| 8 #include "base/memory/ptr_util.h" |
| 9 #include "base/values.h" |
| 10 #include "chrome/browser/policy/policy_path_parser.h" |
| 11 #include "components/policy/core/common/policy_map.h" |
| 12 #include "components/policy/policy_constants.h" |
| 13 #include "components/prefs/pref_value_map.h" |
| 14 #include "components/sync/base/pref_names.h" |
| 15 |
| 16 namespace policy { |
| 17 |
| 18 LocalSyncPolicyHandler::LocalSyncPolicyHandler() |
| 19 : TypeCheckingPolicyHandler(key::kRoamingProfileLocation, |
| 20 base::Value::Type::STRING) {} |
| 21 |
| 22 LocalSyncPolicyHandler::~LocalSyncPolicyHandler() {} |
| 23 |
| 24 void LocalSyncPolicyHandler::ApplyPolicySettings(const PolicyMap& policies, |
| 25 PrefValueMap* prefs) { |
| 26 const base::Value* value = policies.GetValue(policy_name()); |
| 27 base::FilePath::StringType string_value; |
| 28 if (value && value->GetAsString(&string_value)) { |
| 29 base::FilePath::StringType expanded_value = |
| 30 policy::path_parser::ExpandPathVariables(string_value); |
| 31 prefs->SetValue(syncer::prefs::kLocalSyncBackendDir, |
| 32 base::MakeUnique<base::Value>(expanded_value)); |
| 33 } |
| 34 } |
| 35 |
| 36 } // namespace policy |
OLD | NEW |