#include "google_apis/gaia/oauth2_mint_access_token_fetcher_adapter.h"
#include <string>
#include <string_view>
#include <vector>
#include "base/check.h"
#include "base/containers/span.h"
#include "base/memory/ref_counted.h"
#include "google_apis/gaia/gaia_auth_util.h"
#include "google_apis/gaia/google_service_auth_error.h"
#include "google_apis/gaia/oauth2_access_token_consumer.h"
#include "google_apis/gaia/oauth2_access_token_fetcher.h"
#include "google_apis/gaia/oauth2_mint_token_flow.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
namespace {
constexpr char kTokenBindingAssertionSentinel[] = …;
}
OAuth2MintAccessTokenFetcherAdapter::OAuth2MintAccessTokenFetcherAdapter(
OAuth2AccessTokenConsumer* consumer,
scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory,
const std::string& user_gaia_id,
const std::string& refresh_token,
const std::string& device_id,
const std::string& client_version,
const std::string& client_channel)
: … { … }
OAuth2MintAccessTokenFetcherAdapter::~OAuth2MintAccessTokenFetcherAdapter() =
default;
void OAuth2MintAccessTokenFetcherAdapter::Start(
const std::string& client_id,
const std::string& client_secret,
const std::vector<std::string>& scopes) { … }
void OAuth2MintAccessTokenFetcherAdapter::CancelRequest() { … }
void OAuth2MintAccessTokenFetcherAdapter::SetBindingKeyAssertion(
std::string assertion) { … }
void OAuth2MintAccessTokenFetcherAdapter::SetTokenDecryptor(
TokenDecryptor decryptor) { … }
void OAuth2MintAccessTokenFetcherAdapter::
SetOAuth2MintTokenFlowFactoryForTesting(
OAuth2MintTokenFlowFactory factory) { … }
void OAuth2MintAccessTokenFetcherAdapter::OnMintTokenSuccess(
const OAuth2MintTokenFlow::MintTokenResult& result) { … }
void OAuth2MintAccessTokenFetcherAdapter::OnMintTokenFailure(
const GoogleServiceAuthError& error) { … }
void OAuth2MintAccessTokenFetcherAdapter::OnRemoteConsentSuccess(
const RemoteConsentResolutionData& resolution_data) { … }