// 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 COMPONENTS_DATA_SHARING_PUBLIC_DATA_SHARING_NETWORK_LOADER_H_ #define COMPONENTS_DATA_SHARING_PUBLIC_DATA_SHARING_NETWORK_LOADER_H_ #include <memory> #include <string> #include <vector> #include "base/functional/callback_forward.h" #include "components/data_sharing/public/group_data.h" #include "net/traffic_annotation/network_traffic_annotation.h" class GURL; namespace data_sharing { // Class for fetching data sharing related data from network. class DataSharingNetworkLoader { … }; } // namespace data_sharing #endif // COMPONENTS_DATA_SHARING_PUBLIC_DATA_SHARING_NETWORK_LOADER_H_