#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_ML_MODEL_AUTOFILL_MODEL_EXECUTOR_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_ML_MODEL_AUTOFILL_MODEL_EXECUTOR_H_
#include <optional>
#include <vector>
#include "components/autofill/core/browser/ml_model/autofill_model_encoder.h"
#include "components/optimization_guide/core/base_model_executor.h"
namespace autofill {
class AutofillModelExecutor : public optimization_guide::BaseModelExecutor<
AutofillModelEncoder::ModelOutput,
const AutofillModelEncoder::ModelInput&> { … };
}
#endif