// 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 CONTENT_BROWSER_BROWSING_TOPICS_BROWSING_TOPICS_SITE_DATA_MANAGER_IMPL_H_ #define CONTENT_BROWSER_BROWSING_TOPICS_BROWSING_TOPICS_SITE_DATA_MANAGER_IMPL_H_ #include "content/public/browser/browsing_topics_site_data_manager.h" #include "base/threading/sequence_bound.h" #include "content/browser/browsing_topics/browsing_topics_site_data_storage.h" namespace content { // UI thread class that manages the lifetime of the underlying browsing topics // site data storage. Owned by the storage partition. class CONTENT_EXPORT BrowsingTopicsSiteDataManagerImpl : public BrowsingTopicsSiteDataManager { … }; } // namespace content #endif // CONTENT_BROWSER_BROWSING_TOPICS_BROWSING_TOPICS_SITE_DATA_MANAGER_IMPL_H_