// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/policy/core/common/policy_utils.h" #include "components/policy/core/common/policy_pref_names.h" #include "components/policy/core/common/schema.h" #include "components/prefs/pref_service.h" namespace policy::utils { bool IsPolicyTestingEnabled(PrefService* pref_service, version_info::Channel channel) { … } base::Value::Dict GetPolicyNameToTypeMapping( const base::Value::List& policy_names, const policy::Schema& schema) { … } } // namespace policy::utils