// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/sync/base/page_transition_conversion.h" #include "base/notreached.h" #include "components/sync/protocol/sync_enums.pb.h" #include "ui/base/page_transition_types.h" namespace syncer { sync_pb::SyncEnums_PageTransition ToSyncPageTransition( ui::PageTransition transition_type) { … } ui::PageTransition FromSyncPageTransition( sync_pb::SyncEnums_PageTransition transition_type) { … } } // namespace syncer