#include "components/supervised_user/core/browser/fetcher_config.h"
#include <string>
#include <string_view>
#include <vector>
#include "base/feature_list.h"
#include "base/notreached.h"
#include "base/strings/strcat.h"
#include "base/strings/string_split.h"
#include "base/strings/stringprintf.h"
#include "net/http/http_request_headers.h"
#include "net/traffic_annotation/network_traffic_annotation.h"
namespace supervised_user {
BASE_FEATURE(…);
namespace annotations {
net::NetworkTrafficAnnotationTag ClassifyUrlTag() { … }
net::NetworkTrafficAnnotationTag ListFamilyMembersTag() { … }
net::NetworkTrafficAnnotationTag CreatePermissionRequestTag() { … }
}
std::string FetcherConfig::GetHttpMethod() const { … }
std::string_view FetcherConfig::StaticServicePath() const { … }
std::string FetcherConfig::ServicePath(const PathArgs& args) const { … }
}