chromium/components/webdata_services/web_data_service_wrapper_factory.h

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 content

namespace payments {
class PaymentManifestWebDataService;
}  // namespace payments

class WebDataServiceWrapper;

namespace webdata_services {

// A factory that lazily returns a WebDataServiceWrapper implementation for a
// given BrowserContext.
class WebDataServiceWrapperFactory : public BrowserContextKeyedServiceFactory {};

}  // namespace webdata_services

#endif  // COMPONENTS_WEBDATA_SERVICES_WEB_DATA_SERVICE_WRAPPER_FACTORY_H_