#ifndef COMPONENTS_HISTORY_CORE_BROWSER_SYNC_HISTORY_SYNC_BRIDGE_H_
#define COMPONENTS_HISTORY_CORE_BROWSER_SYNC_HISTORY_SYNC_BRIDGE_H_
#include <memory>
#include <set>
#include <string>
#include <vector>
#include "base/memory/raw_ptr.h"
#include "base/scoped_observation.h"
#include "components/history/core/browser/history_backend_observer.h"
#include "components/history/core/browser/history_types.h"
#include "components/history/core/browser/sync/history_backend_for_sync.h"
#include "components/sync/model/data_type_sync_bridge.h"
#include "components/sync/service/sync_service.h"
namespace syncer {
class DataTypeLocalChangeProcessor;
class MetadataChangeList;
}
namespace history {
class HistorySyncMetadataDatabase;
class VisitIDRemapper;
class HistorySyncBridge : public syncer::DataTypeSyncBridge,
public HistoryBackendObserver { … };
}
#endif