#ifndef COMPONENTS_SEND_TAB_TO_SELF_SEND_TAB_TO_SELF_BRIDGE_H_
#define COMPONENTS_SEND_TAB_TO_SELF_SEND_TAB_TO_SELF_BRIDGE_H_
#include <memory>
#include <string>
#include <vector>
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/scoped_observation.h"
#include "base/time/time.h"
#include "components/history/core/browser/history_service.h"
#include "components/history/core/browser/history_service_observer.h"
#include "components/send_tab_to_self/send_tab_to_self_entry.h"
#include "components/send_tab_to_self/send_tab_to_self_model.h"
#include "components/sync/base/data_type.h"
#include "components/sync/model/data_type_store.h"
#include "components/sync/model/data_type_sync_bridge.h"
#include "components/sync_device_info/device_info_tracker.h"
namespace syncer {
class DataTypeLocalChangeProcessor;
}
namespace base {
class Clock;
}
namespace send_tab_to_self {
struct TargetDeviceInfo;
class SendTabToSelfBridge : public syncer::DataTypeSyncBridge,
public SendTabToSelfModel,
public syncer::DeviceInfoTracker::Observer,
public history::HistoryServiceObserver { … };
}
#endif