chromium/components/sync/test/fake_sync_change_processor.cc

// Copyright 2013 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/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() {}

}  // namespace syncer