// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SERVICES_NETWORK_TRUST_TOKENS_PENDING_TRUST_TOKEN_STORE_H_ #define SERVICES_NETWORK_TRUST_TOKENS_PENDING_TRUST_TOKEN_STORE_H_ #include <memory> #include "base/containers/circular_deque.h" #include "base/functional/callback.h" #include "services/network/trust_tokens/trust_token_store.h" namespace network { // PendingTrustTokenStore provides an asynchronous interface with which to // wrap operations against a TrustTokenStore that becomes ready at some point // after the pending store's creation. class PendingTrustTokenStore { … }; } // namespace network #endif // SERVICES_NETWORK_TRUST_TOKENS_PENDING_TRUST_TOKEN_STORE_H_