#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_DATA_MODEL_CONTACT_INFO_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_DATA_MODEL_CONTACT_INFO_H_
#include <memory>
#include <string>
#include "base/compiler_specific.h"
#include "base/memory/raw_ptr_exclusion.h"
#include "components/autofill/core/browser/data_model/autofill_structured_address_name.h"
#include "components/autofill/core/browser/data_model/form_group.h"
namespace autofill {
class NameInfo : public FormGroup { … };
class EmailInfo : public FormGroup { … };
class CompanyInfo : public FormGroup { … };
}
#endif