chromium/services/network/ip_protection/ip_protection_config_getter.h

// 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.

#ifndef SERVICES_NETWORK_IP_PROTECTION_IP_PROTECTION_CONFIG_GETTER_H_
#define SERVICES_NETWORK_IP_PROTECTION_IP_PROTECTION_CONFIG_GETTER_H_

#include <memory>

#include "base/component_export.h"
#include "base/functional/callback.h"
#include "components/ip_protection/common/ip_protection_data_types.h"
#include "net/base/proxy_chain.h"

namespace network {
// Interface used by the network service to get the IP Protection configuration
// (authentication tokens + proxy list).
class COMPONENT_EXPORT(NETWORK_SERVICE) IpProtectionConfigGetter {};
}  // namespace network

#endif  // SERVICES_NETWORK_IP_PROTECTION_IP_PROTECTION_CONFIG_GETTER_H_