#ifndef COMPONENTS_PAYMENTS_CONTENT_SERVICE_WORKER_PAYMENT_APP_FINDER_H_
#define COMPONENTS_PAYMENTS_CONTENT_SERVICE_WORKER_PAYMENT_APP_FINDER_H_
#include <map>
#include <memory>
#include <set>
#include <string>
#include "base/functional/callback.h"
#include "components/payments/content/web_app_manifest.h"
#include "content/public/browser/document_user_data.h"
#include "content/public/browser/global_routing_id.h"
#include "content/public/browser/installed_payment_apps_finder.h"
#include "content/public/browser/payment_app_provider.h"
#include "third_party/blink/public/mojom/payments/payment_request.mojom.h"
class GURL;
template <class T>
class scoped_refptr;
namespace content {
class RenderFrameHost;
}
namespace url {
class Origin;
}
namespace payments {
class CSPChecker;
class PaymentManifestDownloader;
class PaymentManifestWebDataService;
class ServiceWorkerPaymentAppFinder
: public content::DocumentUserData<ServiceWorkerPaymentAppFinder> { … };
}
#endif