// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_WEBAUTHN_FAKE_RECOVERY_KEY_STORE_H_ #define CHROME_BROWSER_WEBAUTHN_FAKE_RECOVERY_KEY_STORE_H_ #include <memory> #include <optional> #include <string> #include "base/containers/span.h" #include "base/functional/callback_forward.h" #include "net/http/http_status_code.h" namespace network { struct ResourceRequest; } namespace trusted_vault_pb { class Vault; } // A FakeRecoveryKeyStore handles network requests that would otherwise go to // the recovery key store (or the gstatic.com resources that it uses). It // records uploaded vaults like the real service. class FakeRecoveryKeyStore { … }; #endif // CHROME_BROWSER_WEBAUTHN_FAKE_RECOVERY_KEY_STORE_H_