chromium/components/safe_browsing/core/common/safe_browsing_policy_handler.h

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_SAFE_BROWSING_CORE_COMMON_SAFE_BROWSING_POLICY_HANDLER_H_
#define COMPONENTS_SAFE_BROWSING_CORE_COMMON_SAFE_BROWSING_POLICY_HANDLER_H_

#include "components/policy/core/browser/configuration_policy_handler.h"

class PrefService;

namespace safe_browsing {

// Handles the SafeBrowsingEnabled and SafeBrowsingProtectionLevel policies.
// Controls the managed values of the prefs |kSafeBrowsingEnabled| and
// |kSafeBrowsingEnhanced|.
class SafeBrowsingPolicyHandler : public policy::ConfigurationPolicyHandler {};

}  // namespace safe_browsing

#endif  // COMPONENTS_SAFE_BROWSING_CORE_COMMON_SAFE_BROWSING_POLICY_HANDLER_H_