Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Unified Diff: sync/api/sync_change_processor_wrapper_for_test.h

Issue 642023004: Standardize usage of virtual/override/final in sync/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sync/api/fake_syncable_service.h ('k') | sync/api/syncable_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « sync/api/fake_syncable_service.h ('k') | sync/api/syncable_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698