// 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/service/sync_client.h" #include "base/functional/callback.h" #include "base/notreached.h" namespace syncer { void SyncClient::GetLocalDataDescriptions( DataTypeSet types, base::OnceCallback<void(std::map<DataType, LocalDataDescription>)> callback) { … } void SyncClient::TriggerLocalDataMigration(DataTypeSet types) { … } } // namespace syncer