// 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. #ifndef CONTENT_PUBLIC_BROWSER_AUTHENTICATOR_COMMON_H_ #define CONTENT_PUBLIC_BROWSER_AUTHENTICATOR_COMMON_H_ #include <memory> #include "content/common/content_export.h" #include "third_party/blink/public/mojom/webauthn/authenticator.mojom.h" namespace url { class Origin; } // namespace url namespace content { class RenderFrameHost; // Interface for any WebAuthn Authenticator common code. class CONTENT_EXPORT AuthenticatorCommon { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_AUTHENTICATOR_COMMON_H_