diff options
Diffstat (limited to 'sync/api/fake_sync_change_processor.cc')
-rw-r--r-- | sync/api/fake_sync_change_processor.cc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sync/api/fake_sync_change_processor.cc b/sync/api/fake_sync_change_processor.cc new file mode 100644 index 0000000..f8d2f40 --- /dev/null +++ b/sync/api/fake_sync_change_processor.cc @@ -0,0 +1,24 @@ +// Copyright 2013 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "sync/api/fake_sync_change_processor.h" + +namespace syncer { + +FakeSyncChangeProcessor::FakeSyncChangeProcessor() {} + +FakeSyncChangeProcessor::~FakeSyncChangeProcessor() {} + +syncer::SyncError FakeSyncChangeProcessor::ProcessSyncChanges( + const tracked_objects::Location& from_here, + const syncer::SyncChangeList& change_list) { + return syncer::SyncError(); +} + +syncer::SyncDataList FakeSyncChangeProcessor::GetAllSyncData( + syncer::ModelType type) const { + return syncer::SyncDataList(); +} + +} // namespace syncer |