chromium/components/policy/core/browser/url_scheme_list_policy_handler.h

// Copyright 2022 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_POLICY_CORE_BROWSER_URL_SCHEME_LIST_POLICY_HANDLER_H_
#define COMPONENTS_POLICY_CORE_BROWSER_URL_SCHEME_LIST_POLICY_HANDLER_H_

#include "base/compiler_specific.h"
#include "base/gtest_prod_util.h"
#include "components/policy/core/browser/configuration_policy_handler.h"
#include "components/policy/policy_export.h"

namespace policy {

// Maps policy to pref like TypeCheckingPolicyHandler while ensuring that the
// value is a list of urls that follow the url format which documented at
// http://www.chromium.org/administrators/url-blocklist-filter-format
class POLICY_EXPORT URLSchemeListPolicyHandler
    : public TypeCheckingPolicyHandler {};

}  // namespace policy

#endif  // COMPONENTS_POLICY_CORE_BROWSER_URL_SCHEME_LIST_POLICY_HANDLER_H_