chromium/chrome/browser/password_manager/chrome_webauthn_credentials_delegate_factory.cc

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

#include "chrome/browser/password_manager/chrome_webauthn_credentials_delegate_factory.h"

#include <memory>

#include "base/containers/flat_map.h"
#include "chrome/browser/password_manager/chrome_webauthn_credentials_delegate.h"
#include "content/public/browser/navigation_handle.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/browser/web_contents_user_data.h"

ChromeWebAuthnCredentialsDelegateFactory::
    ChromeWebAuthnCredentialsDelegateFactory(content::WebContents* web_contents)
    :{}

ChromeWebAuthnCredentialsDelegateFactory::
    ~ChromeWebAuthnCredentialsDelegateFactory() = default;

// static
ChromeWebAuthnCredentialsDelegateFactory*
ChromeWebAuthnCredentialsDelegateFactory::GetFactory(
    content::WebContents* web_contents) {}

ChromeWebAuthnCredentialsDelegate*
ChromeWebAuthnCredentialsDelegateFactory::GetDelegateForFrame(
    content::RenderFrameHost* frame_host) {}

void ChromeWebAuthnCredentialsDelegateFactory::RenderFrameDeleted(
    content::RenderFrameHost* frame_host) {}

void ChromeWebAuthnCredentialsDelegateFactory::DidFinishNavigation(
    content::NavigationHandle* navigation_handle) {}

WEB_CONTENTS_USER_DATA_KEY_IMPL(ChromeWebAuthnCredentialsDelegateFactory);