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

Unified Diff: chrome/browser/sync/glue/typed_url_model_associator.h

Issue 666733003: Standardize usage of virtual/override/final in chrome/browser/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
Index: chrome/browser/sync/glue/typed_url_model_associator.h
diff --git a/chrome/browser/sync/glue/typed_url_model_associator.h b/chrome/browser/sync/glue/typed_url_model_associator.h
index 4fbc318d506d2d72cd4b69c2c6feac46fff8d156..44e9ea7be8c7d0165b6b791a8e2c7340a69f0928 100644
--- a/chrome/browser/sync/glue/typed_url_model_associator.h
+++ b/chrome/browser/sync/glue/typed_url_model_associator.h
@@ -51,27 +51,27 @@ class TypedUrlModelAssociator : public sync_driver::AssociatorInterface {
TypedUrlModelAssociator(ProfileSyncService* sync_service,
history::HistoryBackend* history_backend,
sync_driver::DataTypeErrorHandler* error_handler);
- virtual ~TypedUrlModelAssociator();
+ ~TypedUrlModelAssociator() override;
// AssociatorInterface implementation.
//
// Iterates through the sync model looking for matched pairs of items.
- virtual syncer::SyncError AssociateModels(
+ syncer::SyncError AssociateModels(
syncer::SyncMergeResult* local_merge_result,
syncer::SyncMergeResult* syncer_merge_result) override;
// Clears all associations.
- virtual syncer::SyncError DisassociateModels() override;
+ syncer::SyncError DisassociateModels() override;
// Called from the main thread, to abort the currently active model
// association (for example, if we are shutting down).
- virtual void AbortAssociation() override;
+ void AbortAssociation() override;
// The has_nodes out param is true if the sync model has nodes other
// than the permanent tagged nodes.
- virtual bool SyncModelHasUserCreatedNodes(bool* has_nodes) override;
+ bool SyncModelHasUserCreatedNodes(bool* has_nodes) override;
- virtual bool CryptoReadyIfNecessary() override;
+ bool CryptoReadyIfNecessary() override;
// Delete all typed url nodes.
bool DeleteAllNodes(syncer::WriteTransaction* trans);
« no previous file with comments | « chrome/browser/sync/glue/typed_url_data_type_controller.cc ('k') | chrome/browser/sync/glue/ui_model_worker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698