chromium/components/ip_protection/common/ip_protection_token_fetcher.cc

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/ip_protection/common/ip_protection_token_fetcher.h"

#include <optional>
#include <string>
#include <utility>
#include <vector>

#include "net/third_party/quiche/src/quiche/blind_sign_auth/blind_sign_auth_interface.h"
#include "third_party/abseil-cpp/absl/status/statusor.h"

namespace ip_protection {

// static
void IpProtectionTokenFetcher::GetTokensFromBlindSignAuth(
    quiche::BlindSignAuthInterface* blind_sign_auth,
    quiche::BlindSignAuthServiceType service_type,
    std::optional<std::string> access_token,
    uint32_t batch_size,
    quiche::ProxyLayer proxy_layer,
    FetchBlindSignedTokenCallback callback) {}

}  // namespace ip_protection