chromium/components/autofill/core/browser/autofill_optimization_guide.h

// Copyright 2023 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_AUTOFILL_CORE_BROWSER_AUTOFILL_OPTIMIZATION_GUIDE_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_OPTIMIZATION_GUIDE_H_

#include "base/memory/raw_ptr.h"
#include "components/autofill/core/browser/data_model/credit_card_benefit.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/optimization_guide/proto/hints.pb.h"

class GURL;

namespace optimization_guide {
class OptimizationGuideDecider;
}  // namespace optimization_guide

namespace autofill {

class AutofillField;
class CreditCard;
class FormStructure;
class PersonalDataManager;

// Class to enable and disable features on a per-origin basis using
// optimization_guide::OptimizationGuideDecider.
// One instance per profile.
class AutofillOptimizationGuide : public KeyedService {};

}  // namespace autofill

#endif  // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_OPTIMIZATION_GUIDE_H_