// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_INTEREST_GROUP_SUBRESOURCE_URL_AUTHORIZATIONS_H_ #define CONTENT_BROWSER_INTEREST_GROUP_SUBRESOURCE_URL_AUTHORIZATIONS_H_ #include <map> #include <vector> #include "content/browser/interest_group/auction_worklet_manager.h" #include "content/browser/interest_group/subresource_url_builder.h" #include "content/common/content_export.h" namespace content { // Manages the subresource URLs that may be fetched by the worklet process (for // a given WorkletOwner). // // Owned by the AuctionURLLoaderFactoryProxy. class CONTENT_EXPORT SubresourceUrlAuthorizations { … }; } // namespace content #endif // CONTENT_BROWSER_INTEREST_GROUP_SUBRESOURCE_URL_AUTHORIZATIONS_H_