#include "components/history/core/browser/sync/visit_id_remapper.h"
#include "components/history/core/browser/sync/test_history_backend_for_sync.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace history {
namespace {
constexpr char kOriginatorCacheGuid[] = …;
void AddVisitToRemapper(VisitIDRemapper* remapper, const VisitRow& row) { … }
class VisitIDRemapperTest : public testing::Test { … };
TEST_F(VisitIDRemapperTest, RemapsFromMemory) { … }
TEST_F(VisitIDRemapperTest, RemapsFromDB) { … }
TEST_F(VisitIDRemapperTest, RemapsReferrerChain) { … }
TEST_F(VisitIDRemapperTest, DoesNotRemapAcrossOriginators) { … }
}
}