| 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 9183e632c44050c2a82e16e559c2080a434ca3f0..09902871a082377b676b70cf7bd2427cecbbf8c4 100644
|
| --- a/chrome/browser/sync/glue/generic_change_processor.h
|
| +++ b/chrome/browser/sync/glue/generic_change_processor.h
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2012 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.
|
|
|
| @@ -56,14 +56,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.
|
|
|