#ifndef COMPONENTS_WEBDATA_SERVICES_WEB_DATA_SERVICE_WRAPPER_FACTORY_H_
#define COMPONENTS_WEBDATA_SERVICES_WEB_DATA_SERVICE_WRAPPER_FACTORY_H_
#include "base/memory/scoped_refptr.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
#include "components/keyed_service/core/service_access_type.h"
namespace content {
class BrowserContext;
}
namespace payments {
class PaymentManifestWebDataService;
}
class WebDataServiceWrapper;
namespace webdata_services {
class WebDataServiceWrapperFactory : public BrowserContextKeyedServiceFactory { … };
}
#endif