Index: sync/api/sync_change_processor_wrapper_for_test.h |
diff --git a/sync/api/sync_change_processor_wrapper_for_test.h b/sync/api/sync_change_processor_wrapper_for_test.h |
index 8521df9f3328288141c279a9845feaa1cf190dd2..d7ca77a7874d6ed3b732735629d8555c682b9008 100644 |
--- a/sync/api/sync_change_processor_wrapper_for_test.h |
+++ b/sync/api/sync_change_processor_wrapper_for_test.h |
@@ -18,14 +18,13 @@ class SyncChangeProcessorWrapperForTest : public SyncChangeProcessor { |
// of |wrapped| and is responsible for ensuring it outlives this object. |
explicit SyncChangeProcessorWrapperForTest( |
syncer::SyncChangeProcessor* wrapped); |
- virtual ~SyncChangeProcessorWrapperForTest(); |
+ ~SyncChangeProcessorWrapperForTest() override; |
// SyncChangeProcessor implementation. |
- virtual syncer::SyncError ProcessSyncChanges( |
+ syncer::SyncError ProcessSyncChanges( |
const tracked_objects::Location& from_here, |
const syncer::SyncChangeList& change_list) override; |
- virtual syncer::SyncDataList GetAllSyncData(syncer::ModelType type) |
- const override; |
+ syncer::SyncDataList GetAllSyncData(syncer::ModelType type) const override; |
private: |
syncer::SyncChangeProcessor* const wrapped_; |