#ifndef CHROME_BROWSER_PASSWORD_MANAGER_CHROME_WEBAUTHN_CREDENTIALS_DELEGATE_FACTORY_H_
#define 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/web_contents_observer.h"
#include "content/public/browser/web_contents_user_data.h"
namespace content {
class NavigationHandle;
class RenderFrameHost;
}
class ChromeWebAuthnCredentialsDelegateFactory
: public content::WebContentsObserver,
public content::WebContentsUserData<
ChromeWebAuthnCredentialsDelegateFactory> { … };
#endif