chromium/chrome/browser/policy/gen_ai_default_settings_policy_handler.h

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

#ifndef CHROME_BROWSER_POLICY_GEN_AI_DEFAULT_SETTINGS_POLICY_HANDLER_H_
#define CHROME_BROWSER_POLICY_GEN_AI_DEFAULT_SETTINGS_POLICY_HANDLER_H_

#include <string>
#include <vector>

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

class PrefValueMap;

namespace policy {

class PolicyMap;

// Handles the pref for the `GenAiDefaultSettings` policy, as well as the prefs
// of other included GenAI policies which are not already set by another source.
class GenAiDefaultSettingsPolicyHandler
    : public policy::TypeCheckingPolicyHandler {};

}  // namespace policy

#endif  // CHROME_BROWSER_POLICY_GEN_AI_DEFAULT_SETTINGS_POLICY_HANDLER_H_