Index: chrome/browser/sync/glue/generic_change_processor.h |
diff --git a/chrome/browser/sync/glue/generic_change_processor.h b/chrome/browser/sync/glue/generic_change_processor.h |
index d3176e53d62c3bbec8ee77bd4a05306606a920a1..2e85dc6423b484f97755a07492f0d9c6ff5c8851 100644 |
--- a/chrome/browser/sync/glue/generic_change_processor.h |
+++ b/chrome/browser/sync/glue/generic_change_processor.h |
@@ -45,12 +45,14 @@ class GenericChangeProcessor : public ChangeProcessor, |
virtual void CommitChangesFromSyncModel() OVERRIDE; |
// SyncChangeProcessor implementation. |
- virtual void ProcessSyncChanges(const tracked_objects::Location& from_here, |
- const SyncChangeList& change_list) OVERRIDE; |
+ virtual bool ProcessSyncChanges(const tracked_objects::Location& from_here, |
+ const SyncChangeList& change_list, |
+ SyncError* error) OVERRIDE; |
// Fills |current_sync_data| with all the syncer data for the specified type. |
virtual bool GetSyncDataForType(syncable::ModelType type, |
- SyncDataList* current_sync_data); |
+ SyncDataList* current_sync_data, |
+ SyncError* error); |
// Generic versions of AssociatorInterface methods. Called by |
// SyncableServiceAdapter. |