// 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_SAVED_TAB_GROUPS_FAKE_TAB_GROUP_SYNC_SERVICE_H_ #define COMPONENTS_SAVED_TAB_GROUPS_FAKE_TAB_GROUP_SYNC_SERVICE_H_ #include "base/observer_list.h" #include "components/saved_tab_groups/saved_tab_group.h" #include "components/saved_tab_groups/tab_group_sync_coordinator.h" #include "components/saved_tab_groups/tab_group_sync_service.h" #include "components/saved_tab_groups/types.h" namespace tab_groups { // Fake implementation for the TabGroupSyncService. class FakeTabGroupSyncService : public TabGroupSyncService { … }; } // namespace tab_groups #endif // COMPONENTS_SAVED_TAB_GROUPS_FAKE_TAB_GROUP_SYNC_SERVICE_H_