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

Unified Diff: sync/engine/directory_update_handler.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/engine/directory_commit_contributor.h ('k') | sync/engine/get_updates_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/engine/directory_update_handler.h
diff --git a/sync/engine/directory_update_handler.h b/sync/engine/directory_update_handler.h
index 270677441a3899666e3b3a0bce375b24a480fbd1..230fbc3fbe05d58a201b6de63d29709a369b347f 100644
--- a/sync/engine/directory_update_handler.h
+++ b/sync/engine/directory_update_handler.h
@@ -47,20 +47,19 @@ class SYNC_EXPORT_PRIVATE DirectoryUpdateHandler : public UpdateHandler {
ModelType type,
scoped_refptr<ModelSafeWorker> worker,
DirectoryTypeDebugInfoEmitter* debug_info_emitter);
- virtual ~DirectoryUpdateHandler();
+ ~DirectoryUpdateHandler() override;
// UpdateHandler implementation.
- virtual void GetDownloadProgress(
+ void GetDownloadProgress(
sync_pb::DataTypeProgressMarker* progress_marker) const override;
- virtual void GetDataTypeContext(sync_pb::DataTypeContext* context) const
- override;
- virtual SyncerError ProcessGetUpdatesResponse(
+ void GetDataTypeContext(sync_pb::DataTypeContext* context) const override;
+ SyncerError ProcessGetUpdatesResponse(
const sync_pb::DataTypeProgressMarker& progress_marker,
const sync_pb::DataTypeContext& mutated_context,
const SyncEntityList& applicable_updates,
sessions::StatusController* status) override;
- virtual void ApplyUpdates(sessions::StatusController* status) override;
- virtual void PassiveApplyUpdates(sessions::StatusController* status) override;
+ void ApplyUpdates(sessions::StatusController* status) override;
+ void PassiveApplyUpdates(sessions::StatusController* status) override;
private:
friend class DirectoryUpdateHandlerApplyUpdateTest;
« no previous file with comments | « sync/engine/directory_commit_contributor.h ('k') | sync/engine/get_updates_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698