// Copyright 2023 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/protocol/data_type_state_helper.h" #include "components/sync/protocol/data_type_state.pb.h" namespace syncer { bool IsInitialSyncDone(sync_pb::DataTypeState::InitialSyncState state) { … } bool IsInitialSyncAtLeastPartiallyDone( sync_pb::DataTypeState::InitialSyncState state) { … } } // namespace syncer