#ifndef COMPONENTS_TRUSTED_VAULT_RECOVERY_KEY_STORE_CONTROLLER_H_
#define COMPONENTS_TRUSTED_VAULT_RECOVERY_KEY_STORE_CONTROLLER_H_
#include <cstdint>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/functional/callback.h"
#include "base/memory/weak_ptr.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
#include "components/account_id/account_id.h"
#include "components/signin/public/identity_manager/account_info.h"
#include "components/trusted_vault/proto/local_trusted_vault.pb.h"
#include "components/trusted_vault/proto/recovery_key_store.pb.h"
#include "components/trusted_vault/recovery_key_store_connection.h"
#include "components/trusted_vault/trusted_vault_access_token_fetcher_frontend.h"
namespace trusted_vault {
class RecoveryKeyStoreController { … };
}
#endif