#ifndef CONTENT_BROWSER_INTEREST_GROUP_BIDDING_AND_AUCTION_SERVER_KEY_FETCHER_H_
#define CONTENT_BROWSER_INTEREST_GROUP_BIDDING_AND_AUCTION_SERVER_KEY_FETCHER_H_
#include <optional>
#include <string>
#include <vector>
#include "base/containers/circular_deque.h"
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/types/expected.h"
#include "content/common/content_export.h"
#include "services/data_decoder/public/cpp/data_decoder.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
#include "url/gurl.h"
#include "url/origin.h"
namespace network {
class SimpleURLLoader;
}
namespace content {
class InterestGroupManagerImpl;
constexpr char kDefaultBiddingAndAuctionGCPCoordinatorOrigin[] = …;
struct BiddingAndAuctionServerKey { … };
class CONTENT_EXPORT BiddingAndAuctionServerKeyFetcher { … };
}
#endif