// 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. #include "services/network/trust_tokens/pending_trust_token_store.h" namespace network { PendingTrustTokenStore::PendingTrustTokenStore() = default; PendingTrustTokenStore::~PendingTrustTokenStore() = default; void PendingTrustTokenStore::OnStoreReady( std::unique_ptr<TrustTokenStore> store) { … } void PendingTrustTokenStore::ExecuteOrEnqueue( base::OnceCallback<void(TrustTokenStore*)> fn) { … } void PendingTrustTokenStore::ExecuteAll() { … } } // namespace network