#include "components/password_manager/content/browser/content_credential_manager.h"
#include <utility>
#include "base/functional/bind.h"
namespace password_manager {
ContentCredentialManager::ContentCredentialManager(
PasswordManagerClient* client)
: … { … }
ContentCredentialManager::~ContentCredentialManager() = default;
void ContentCredentialManager::BindRequest(
mojo::PendingReceiver<blink::mojom::CredentialManager> receiver) { … }
bool ContentCredentialManager::HasBinding() const { … }
void ContentCredentialManager::DisconnectBinding() { … }
void ContentCredentialManager::Store(const CredentialInfo& credential,
StoreCallback callback) { … }
void ContentCredentialManager::PreventSilentAccess(
PreventSilentAccessCallback callback) { … }
void ContentCredentialManager::Get(CredentialMediationRequirement mediation,
bool include_passwords,
const std::vector<GURL>& federations,
GetCallback callback) { … }
}