chromium/components/content_settings/core/browser/cookie_settings_policy_handler.h

// Copyright 2019 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_CONTENT_SETTINGS_CORE_BROWSER_COOKIE_SETTINGS_POLICY_HANDLER_H_
#define COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_COOKIE_SETTINGS_POLICY_HANDLER_H_

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

class PrefValueMap;

namespace content_settings {

// A ConfigurationPolicyHandler which sets kCookieControlsEnabled to
// kOff/kBlockThirdParty based on the BlockThirdPartyCookies policy.
class CookieSettingsPolicyHandler : public policy::TypeCheckingPolicyHandler {};

}  // namespace content_settings

#endif  // COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_COOKIE_SETTINGS_POLICY_HANDLER_H_