chromium/components/autofill_prediction_improvements/core/browser/autofill_prediction_improvements_filling_engine.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 COMPONENTS_AUTOFILL_PREDICTION_IMPROVEMENTS_CORE_BROWSER_AUTOFILL_PREDICTION_IMPROVEMENTS_FILLING_ENGINE_H_
#define COMPONENTS_AUTOFILL_PREDICTION_IMPROVEMENTS_CORE_BROWSER_AUTOFILL_PREDICTION_IMPROVEMENTS_FILLING_ENGINE_H_

#include "base/functional/callback_forward.h"
#include "base/types/expected.h"

namespace autofill {
class FormData;
}

namespace optimization_guide::proto {
class AXTreeUpdate;
}

namespace autofill_prediction_improvements {

// The filling engine that provides autofill predictions improvements.
class AutofillPredictionImprovementsFillingEngine {};

}  // namespace autofill_prediction_improvements

#endif  // COMPONENTS_AUTOFILL_PREDICTION_IMPROVEMENTS_CORE_BROWSER_AUTOFILL_PREDICTION_IMPROVEMENTS_FILLING_ENGINE_H_