// 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_VISITED_URL_RANKING_PUBLIC_FETCH_OPTIONS_H_ #define COMPONENTS_VISITED_URL_RANKING_PUBLIC_FETCH_OPTIONS_H_ #include <map> #include <vector> #include "base/containers/enum_set.h" #include "base/containers/flat_set.h" #include "base/time/time.h" #include "build/build_config.h" #include "components/visited_url_ranking/public/url_visit.h" namespace visited_url_ranking { // A series of supported data transforms that modify a collection of // `URLVisitAggregate` objects. enum class URLVisitAggregatesTransformType { … }; // The options that may be specified when fetching URL visit data. struct FetchOptions { … }; } // namespace visited_url_ranking #endif // COMPONENTS_VISITED_URL_RANKING_PUBLIC_FETCH_OPTIONS_H_