#ifndef COMPONENTS_TRUSTED_VAULT_TRUSTED_VAULT_ACCESS_TOKEN_FETCHER_IMPL_H_
#define COMPONENTS_TRUSTED_VAULT_TRUSTED_VAULT_ACCESS_TOKEN_FETCHER_IMPL_H_
#include <memory>
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "components/trusted_vault/trusted_vault_access_token_fetcher.h"
namespace base {
class SequencedTaskRunner;
}
namespace trusted_vault {
class TrustedVaultAccessTokenFetcherFrontend;
class TrustedVaultAccessTokenFetcherImpl
: public TrustedVaultAccessTokenFetcher { … };
}
#endif