1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef SYNC_API_FAKE_SYNC_CHANGE_PROCESSOR_H_
6 #define SYNC_API_FAKE_SYNC_CHANGE_PROCESSOR_H_
8 #include "sync/api/sync_change_processor.h"
12 class FakeSyncChangeProcessor
: public SyncChangeProcessor
{
14 FakeSyncChangeProcessor();
15 virtual ~FakeSyncChangeProcessor();
17 // SyncChangeProcessor implementation.
19 // ProcessSyncChanges will accumulate changes in changes() until they are
21 virtual syncer::SyncError
ProcessSyncChanges(
22 const tracked_objects::Location
& from_here
,
23 const syncer::SyncChangeList
& change_list
) OVERRIDE
;
25 // SyncChangeProcessor implementation.
27 // Returns an empty list.
28 virtual syncer::SyncDataList
GetAllSyncData(syncer::ModelType type
)
31 virtual const syncer::SyncChangeList
& changes() const;
32 virtual syncer::SyncChangeList
& changes();
35 syncer::SyncChangeList change_list_
;
37 DISALLOW_COPY_AND_ASSIGN(FakeSyncChangeProcessor
);
42 #endif // SYNC_API_FAKE_SYNC_CHANGE_PROCESSOR_H_