#ifndef COMPONENTS_TRUSTED_VAULT_FRONTEND_TRUSTED_VAULT_CONNECTION_H_
#define COMPONENTS_TRUSTED_VAULT_FRONTEND_TRUSTED_VAULT_CONNECTION_H_
#include <memory>
#include "base/memory/scoped_refptr.h"
namespace network {
class SharedURLLoaderFactory;
}
namespace signin {
class IdentityManager;
}
namespace trusted_vault {
enum class SecurityDomainId;
class TrustedVaultConnection;
std::unique_ptr<TrustedVaultConnection> NewFrontendTrustedVaultConnection(
SecurityDomainId security_domain,
signin::IdentityManager* identity_manager,
scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory);
}
#endif