// 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_DECORATION_H_ #define COMPONENTS_VISITED_URL_RANKING_PUBLIC_DECORATION_H_ #include <string> namespace visited_url_ranking { // The currently supported Decorators that may be added to a URL Visit // Aggregate enum class DecorationType { … }; // Holds the data for one of the decorations for a URL Visit Aggregate. class Decoration { … }; } // namespace visited_url_ranking #endif // COMPONENTS_VISITED_URL_RANKING_PUBLIC_DECORATION_H_