#ifndef COMPONENTS_AUTOFILL_CORE_COMMON_FORM_DATA_PREDICTIONS_H__
#define COMPONENTS_AUTOFILL_CORE_COMMON_FORM_DATA_PREDICTIONS_H__
#include <string>
#include <vector>
#include "components/autofill/core/common/form_data.h"
#include "components/autofill/core/common/form_field_data_predictions.h"
namespace autofill {
struct FormDataPredictions {
FormData data;
std::string signature;
std::string experiment_id;
std::vector<FormFieldDataPredictions> fields;
FormDataPredictions();
FormDataPredictions(const FormDataPredictions& other);
~FormDataPredictions();
bool operator==(const FormDataPredictions& predictions) const;
bool operator!=(const FormDataPredictions& predictions) const;
};
}
#endif