// 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_BROWSING_TOPICS_TOPIC_AND_DOMAINS_H_ #define COMPONENTS_BROWSING_TOPICS_TOPIC_AND_DOMAINS_H_ #include <set> #include "base/types/strong_alias.h" #include "base/values.h" #include "components/browsing_topics/common/common_types.h" namespace browsing_topics { // Contains a topic and a set of hashed domains that has observed the associated // topic (i.e. the Topics API was used within the domains's context, and the // page is related to that topic.) class TopicAndDomains { … }; } // namespace browsing_topics #endif // COMPONENTS_BROWSING_TOPICS_TOPIC_AND_DOMAINS_H_