chromium/components/password_manager/content/browser/content_credential_manager.cc

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

#include "components/password_manager/content/browser/content_credential_manager.h"

#include <utility>

#include "base/functional/bind.h"

namespace password_manager {

// ContentCredentialManager -------------------------------------------------

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) {}

}  // namespace password_manager