// 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_RESULT_H_ #define COMPONENTS_VISITED_URL_RANKING_PUBLIC_FETCH_RESULT_H_ #include <map> #include <string> #include <variant> #include "base/functional/callback.h" #include "components/visited_url_ranking/public/url_visit.h" namespace visited_url_ranking { // A URL based identifier derived from a merging and deduplication strategy // which helps match related URL visit data. URLMergeKey; struct FetchResult { … }; } // namespace visited_url_ranking #endif // COMPONENTS_VISITED_URL_RANKING_PUBLIC_FETCH_RESULT_H_