#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_AUTOFILL_OFFER_MANAGER_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_AUTOFILL_OFFER_MANAGER_H_
#include <stdint.h>
#include <map>
#include <set>
#include <string>
#include <vector>
#include "base/gtest_prod_util.h"
#include "base/memory/raw_ptr.h"
#include "base/scoped_observation.h"
#include "components/autofill/core/browser/payments/offer_notification_handler.h"
#include "components/autofill/core/browser/payments_data_manager.h"
#include "components/keyed_service/core/keyed_service.h"
#include "url/gurl.h"
namespace autofill {
class AutofillClient;
class AutofillOfferData;
class OfferNotificationHandler;
class PersonalDataManager;
class AutofillOfferManager : public KeyedService,
public PaymentsDataManager::Observer { … };
}
#endif