#include "components/content_settings/core/browser/insecure_private_network_policy_handler.h"
#include "base/values.h"
#include "components/content_settings/core/common/content_settings.h"
#include "components/content_settings/core/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 content_settings {
namespace {
ContentSetting ConvertBooleanToContentSetting(bool is_allowed) { … }
}
InsecurePrivateNetworkPolicyHandler::InsecurePrivateNetworkPolicyHandler()
: … { … }
InsecurePrivateNetworkPolicyHandler::~InsecurePrivateNetworkPolicyHandler() =
default;
void InsecurePrivateNetworkPolicyHandler::ApplyPolicySettings(
const policy::PolicyMap& policies,
PrefValueMap* prefs) { … }
}