#include "components/payments/content/service_worker_payment_app_factory.h"
#include <map>
#include <utility>
#include "base/check_op.h"
#include "base/containers/contains.h"
#include "base/functional/bind.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "components/payments/content/developer_console_logger.h"
#include "components/payments/content/payment_manifest_web_data_service.h"
#include "components/payments/content/service_worker_payment_app.h"
#include "components/payments/content/service_worker_payment_app_finder.h"
#include "components/payments/core/error_message_util.h"
#include "components/payments/core/features.h"
#include "components/payments/core/method_strings.h"
#include "content/public/browser/stored_payment_app.h"
#include "content/public/browser/supported_delegations.h"
#include "content/public/browser/web_contents.h"
#include "third_party/blink/public/mojom/permissions_policy/permissions_policy_feature.mojom-shared.h"
namespace payments {
class ServiceWorkerPaymentAppCreator { … };
ServiceWorkerPaymentAppFactory::ServiceWorkerPaymentAppFactory()
: … { … }
ServiceWorkerPaymentAppFactory::~ServiceWorkerPaymentAppFactory() { … }
void ServiceWorkerPaymentAppFactory::Create(base::WeakPtr<Delegate> delegate) { … }
}