// 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_TRUSTED_VAULT_TRUSTED_VAULT_CLIENT_H_ #define COMPONENTS_TRUSTED_VAULT_TRUSTED_VAULT_CLIENT_H_ #include <memory> #include <string> #include <vector> #include "base/functional/callback_forward.h" #include "base/observer_list_types.h" struct CoreAccountInfo; namespace trusted_vault { // Interface that allows platform-specific logic related to accessing locally // available trusted vault encryption keys. class TrustedVaultClient { … }; } // namespace trusted_vault #endif // COMPONENTS_TRUSTED_VAULT_TRUSTED_VAULT_CLIENT_H_