// Copyright 2023 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_TEST_HISTORY_CLUSTERS_SERVICE_H_ #define COMPONENTS_HISTORY_CLUSTERS_CORE_TEST_HISTORY_CLUSTERS_SERVICE_H_ #include <vector> #include "components/history_clusters/core/history_clusters_service.h" namespace history_clusters { // An implementation of `HistoryClustersService` that is more usable in tests by // consumers of history clusters functionality. class TestHistoryClustersService : public HistoryClustersService { … }; } // namespace history_clusters #endif // COMPONENTS_HISTORY_CLUSTERS_CORE_TEST_HISTORY_CLUSTERS_SERVICE_H_