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

Unified Diff: components/sync_driver/data_type_manager_impl.h

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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: components/sync_driver/data_type_manager_impl.h
diff --git a/components/sync_driver/data_type_manager_impl.h b/components/sync_driver/data_type_manager_impl.h
index 7d0b101ed3eb044a079b699cc093724d076a4479..5856a185d0d7c8c9ec139f4efc2be94a73b78d0f 100644
--- a/components/sync_driver/data_type_manager_impl.h
+++ b/components/sync_driver/data_type_manager_impl.h
@@ -50,27 +50,27 @@ class DataTypeManagerImpl : public DataTypeManager,
// DataTypeManager interface.
virtual void Configure(syncer::ModelTypeSet desired_types,
- syncer::ConfigureReason reason) OVERRIDE;
- virtual void ReenableType(syncer::ModelType type) OVERRIDE;
- virtual void ResetDataTypeErrors() OVERRIDE;
+ syncer::ConfigureReason reason) override;
+ virtual void ReenableType(syncer::ModelType type) override;
+ virtual void ResetDataTypeErrors() override;
// Needed only for backend migration.
virtual void PurgeForMigration(
syncer::ModelTypeSet undesired_types,
- syncer::ConfigureReason reason) OVERRIDE;
+ syncer::ConfigureReason reason) override;
- virtual void Stop() OVERRIDE;
- virtual State state() const OVERRIDE;
+ virtual void Stop() override;
+ virtual State state() const override;
// |ModelAssociationManagerDelegate| implementation.
virtual void OnSingleDataTypeAssociationDone(
syncer::ModelType type,
- const syncer::DataTypeAssociationStats& association_stats) OVERRIDE;
+ const syncer::DataTypeAssociationStats& association_stats) override;
virtual void OnModelAssociationDone(
- const DataTypeManager::ConfigureResult& result) OVERRIDE;
+ const DataTypeManager::ConfigureResult& result) override;
virtual void OnSingleDataTypeWillStop(
syncer::ModelType type,
- const syncer::SyncError& error) OVERRIDE;
+ const syncer::SyncError& error) override;
// Used by unit tests. TODO(sync) : This would go away if we made
// this class be able to do Dependency injection. crbug.com/129212.
« no previous file with comments | « components/sync_driver/data_type_controller.h ('k') | components/sync_driver/data_type_manager_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698