#include "components/sync/test/fake_sync_change_processor.h"
#include "components/sync/model/sync_change.h"
#include "components/sync/model/sync_data.h"
namespace syncer {
FakeSyncChangeProcessor::FakeSyncChangeProcessor() = default;
FakeSyncChangeProcessor::~FakeSyncChangeProcessor() = default;
std::optional<ModelError> FakeSyncChangeProcessor::ProcessSyncChanges(
const base::Location& from_here,
const SyncChangeList& change_list) { … }
const SyncChangeList& FakeSyncChangeProcessor::changes() const { … }
SyncChangeList& FakeSyncChangeProcessor::changes() { … }
}