| 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 e0faaeb0a332c622a030df6eedca3149d9a0d77f..b20ca1d722a59ef7d8a8fedcee41a6362d52698b 100644
|
| --- a/chrome/browser/sync/glue/generic_change_processor.h
|
| +++ b/chrome/browser/sync/glue/generic_change_processor.h
|
| @@ -58,14 +58,14 @@ class GenericChangeProcessor : public ChangeProcessor,
|
| const SyncChangeList& change_list) OVERRIDE;
|
|
|
| // Fills |current_sync_data| with all the syncer data for the specified type.
|
| - SyncError GetSyncDataForType(syncable::ModelType type,
|
| - SyncDataList* current_sync_data);
|
| + virtual SyncError GetSyncDataForType(syncable::ModelType type,
|
| + SyncDataList* current_sync_data);
|
|
|
| // Generic versions of AssociatorInterface methods. Called by
|
| // SyncableServiceAdapter or the DataTypeController.
|
| - bool SyncModelHasUserCreatedNodes(syncable::ModelType type,
|
| - bool* has_nodes);
|
| - bool CryptoReadyIfNecessary(syncable::ModelType type);
|
| + virtual bool SyncModelHasUserCreatedNodes(syncable::ModelType type,
|
| + bool* has_nodes);
|
| + virtual bool CryptoReadyIfNecessary(syncable::ModelType type);
|
|
|
| protected:
|
| // ChangeProcessor interface.
|
|
|