// 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 COMPONENTS_HISTORY_CLUSTERS_CORE_SIMILAR_VISIT_H_ #define COMPONENTS_HISTORY_CLUSTERS_CORE_SIMILAR_VISIT_H_ #include <string> #include "base/hash/hash.h" #include "components/history/core/browser/history_types.h" namespace history_clusters { // Represents a visit that can be used for deduping. struct SimilarVisit { … }; } // namespace history_clusters #endif // COMPONENTS_HISTORY_CLUSTERS_CORE_SIMILAR_VISIT_H_