#ifndef CHROME_BROWSER_SYNC_TEST_INTEGRATION_CONTACT_INFO_HELPER_H_
#define CHROME_BROWSER_SYNC_TEST_INTEGRATION_CONTACT_INFO_HELPER_H_
#include "base/memory/raw_ptr.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sync/test/integration/status_change_checker.h"
#include "components/autofill/core/browser/address_data_manager.h"
#include "components/autofill/core/browser/data_model/autofill_profile.h"
#include "components/autofill/core/browser/personal_data_manager.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace contact_info_helper {
autofill::AutofillProfile BuildTestAccountProfile();
autofill::PersonalDataManager* GetPersonalDataManager(Profile* profile);
class AddressDataManagerProfileChecker
: public StatusChangeChecker,
public autofill::AddressDataManager::Observer { … };
}
#endif