#ifndef COMPONENTS_WEBAUTHN_CONTENT_BROWSER_INTERNAL_AUTHENTICATOR_IMPL_H_
#define COMPONENTS_WEBAUTHN_CONTENT_BROWSER_INTERNAL_AUTHENTICATOR_IMPL_H_
#include <stdint.h>
#include <memory>
#include "components/webauthn/core/browser/internal_authenticator.h"
#include "content/public/browser/web_contents_observer.h"
#include "third_party/blink/public/mojom/webauthn/authenticator.mojom.h"
#include "url/origin.h"
namespace url {
class Origin;
}
namespace content {
class AuthenticatorCommon;
class RenderFrameHost;
class InternalAuthenticatorImpl : public webauthn::InternalAuthenticator,
public WebContentsObserver { … };
}
#endif