#ifndef COMPONENTS_WEBDATA_SERVICES_WEB_DATA_SERVICE_WRAPPER_H_
#define COMPONENTS_WEBDATA_SERVICES_WEB_DATA_SERVICE_WRAPPER_H_
#include <string>
#include "base/functional/callback_forward.h"
#include "base/memory/ref_counted.h"
#include "build/blink_buildflags.h"
#include "build/build_config.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/sync/model/syncable_service.h"
#include "sql/init_status.h"
class KeywordWebDataService;
class TokenWebData;
class WebDatabaseService;
#if BUILDFLAG(USE_BLINK)
namespace payments {
class PaymentManifestWebDataService;
}
#endif
namespace autofill {
class AutofillWebDataService;
}
namespace plus_addresses {
class PlusAddressWebDataService;
}
namespace base {
class FilePath;
class SequencedTaskRunner;
}
class WebDataServiceWrapper : public KeyedService { … };
#endif