chromium/components/webauthn/content/browser/internal_authenticator_impl.h

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

#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;

// Implementation of the public InternalAuthenticator interface.
// This class is meant only for trusted and internal components of Chrome to
// use.
class InternalAuthenticatorImpl : public webauthn::InternalAuthenticator,
                                  public WebContentsObserver {};

}  // namespace content

#endif  // COMPONENTS_WEBAUTHN_CONTENT_BROWSER_INTERNAL_AUTHENTICATOR_IMPL_H_