| Index: components/autofill/core/browser/webdata/autofill_profile_syncable_service_unittest.cc
|
| diff --git a/components/autofill/core/browser/webdata/autofill_profile_syncable_service_unittest.cc b/components/autofill/core/browser/webdata/autofill_profile_syncable_service_unittest.cc
|
| index 9b9afded9391371fa9625490b8986f4f4a1a3042..4c3fe3da77d4f2311cd853a8bcd72d0b9b30ec33 100644
|
| --- a/components/autofill/core/browser/webdata/autofill_profile_syncable_service_unittest.cc
|
| +++ b/components/autofill/core/browser/webdata/autofill_profile_syncable_service_unittest.cc
|
| @@ -95,13 +95,14 @@ MATCHER_P(DataBundleCheck, n_bundle, "") {
|
| class MockSyncChangeProcessor : public syncer::SyncChangeProcessor {
|
| public:
|
| MockSyncChangeProcessor() {}
|
| - virtual ~MockSyncChangeProcessor() {}
|
| + ~MockSyncChangeProcessor() override {}
|
|
|
| MOCK_METHOD2(ProcessSyncChanges,
|
| syncer::SyncError(const tracked_objects::Location&,
|
| const syncer::SyncChangeList&));
|
| - virtual syncer::SyncDataList GetAllSyncData(syncer::ModelType type)
|
| - const override { return syncer::SyncDataList(); }
|
| + syncer::SyncDataList GetAllSyncData(syncer::ModelType type) const override {
|
| + return syncer::SyncDataList();
|
| + }
|
| };
|
|
|
| class TestSyncChangeProcessor : public syncer::SyncChangeProcessor {
|
|
|