blob: 445b486f370b941875b9ae719ef15f1e71d61839 [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/net/disk_cache_dir_policy_handler.h"
#include "base/files/file_path.h"
#include "base/strings/utf_string_conversions.h"
#include "base/values.h"
#include "build/build_config.h"
#include "chrome/browser/policy/policy_path_parser.h"
#include "chrome/common/pref_names.h"
#include "components/policy/core/common/policy_map.h"
#include "components/policy/policy_constants.h"
#include "components/prefs/pref_value_map.h"
namespace policy {
DiskCacheDirPolicyHandler::DiskCacheDirPolicyHandler()
: TypeCheckingPolicyHandler(key::kDiskCacheDir, base::Value::Type::STRING) {
}
DiskCacheDirPolicyHandler::~DiskCacheDirPolicyHandler() {}
void DiskCacheDirPolicyHandler::ApplyPolicySettings(const PolicyMap& policies,
PrefValueMap* prefs) {
const base::Value* value = policies.GetValue(policy_name());
std::string string_value;
if (value && value->GetAsString(&string_value)) {
base::FilePath::StringType expanded_value =
#if defined(OS_WIN)
policy::path_parser::ExpandPathVariables(
base::UTF8ToWide(string_value));
#else
policy::path_parser::ExpandPathVariables(string_value);
#endif
base::FilePath expanded_path(expanded_value);
prefs->SetValue(prefs::kDiskCacheDir,
base::Value(expanded_path.AsUTF8Unsafe()));
}
}
} // namespace policy