#ifndef WEBKIT_FORMS_FORM_DATA_PREDICTIONS_H__
#define WEBKIT_FORMS_FORM_DATA_PREDICTIONS_H__
#include <string>
#include <vector>
#include "webkit/forms/form_data.h"
#include "webkit/forms/form_field_predictions.h"
#include "webkit/forms/webkit_forms_export.h"
namespace webkit {
namespace forms {
struct WEBKIT_FORMS_EXPORT FormDataPredictions {
FormData data;
std::string signature;
std::string experiment_id;
std::vector<FormFieldPredictions> fields;
FormDataPredictions();
FormDataPredictions(const FormDataPredictions& other);
~FormDataPredictions();
};
}
}
#endif