chromium/components/saved_tab_groups/tab_group_sync_bridge_mediator.h

// 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_TAB_GROUP_SYNC_BRIDGE_MEDIATOR_H_
#define COMPONENTS_SAVED_TAB_GROUPS_TAB_GROUP_SYNC_BRIDGE_MEDIATOR_H_

#include <vector>

#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/scoped_observation.h"
#include "base/scoped_observation_traits.h"
#include "base/uuid.h"
#include "components/saved_tab_groups/saved_tab_group.h"
#include "components/saved_tab_groups/saved_tab_group_model_observer.h"
#include "components/saved_tab_groups/saved_tab_group_tab.h"

class PrefService;

namespace syncer {
class DataTypeControllerDelegate;
}  // namespace syncer

namespace tab_groups {

class SavedTabGroupModel;
class SavedTabGroupSyncBridge;
class SharedTabGroupDataSyncBridge;

struct SyncDataTypeConfiguration;

// Used to control sync bridges for Saved and Shared tab groups and dispatch
// changes in the model to a corresponding bridge.
class TabGroupSyncBridgeMediator : public SavedTabGroupModelObserver {};

}  // namespace tab_groups

#endif  // COMPONENTS_SAVED_TAB_GROUPS_TAB_GROUP_SYNC_BRIDGE_MEDIATOR_H_